- add list of entries

- add todo
pull/26/head
Simon Gockner 6 years ago
parent b9f1f53cf1
commit 2c54250e13
  1. 6
      GBase/GBaseTable.cs
  2. 7
      GBase/Interfaces/IGBaseTable.cs

@ -32,6 +32,7 @@ namespace GBase
_fileHandler = fileHandlerFactory.Create();
_gBaseColumnFactory = gBaseColumnFactory;
Columns = new List<IGBaseColumn>();
Entries = new List<object>();
}
/// <summary>
@ -49,6 +50,11 @@ namespace GBase
/// </summary>
public List<IGBaseColumn> Columns { get; }
/// <summary>
/// The entries of this <see cref="IGBaseTable"/>
/// </summary>
public List<object> Entries { get; }
/// <summary>
/// Initialize this <see cref="IGBase"/>

@ -12,7 +12,7 @@ namespace GBase.Interfaces
/// <summary>
/// A <see cref="IGBase"/> table
/// </summary>
public interface IGBaseTable : IAsyncDisposable
public interface IGBaseTable : IAsyncDisposable //TODO: make generic?
{
/// <summary>
/// The <see cref="System.Type"/> of the class that this <see cref="IGBaseTable"/> represents
@ -29,6 +29,11 @@ namespace GBase.Interfaces
/// </summary>
List<IGBaseColumn> Columns { get; }
/// <summary>
/// The entries of this <see cref="IGBaseTable"/>
/// </summary>
List<object> Entries { get; }
/// <summary>
/// Initialize this <see cref="IGBase"/>
/// </summary>

Loading…
Cancel
Save