- remove todos

master
Simon G 5 years ago
parent a29700e38b
commit 52aedb99a9
  1. 2
      GBase/Interfaces/IGBaseColumn.cs
  2. 5
      GBase/Interfaces/IGBaseTable.cs

@ -9,7 +9,7 @@ namespace GBase.Interfaces
/// <summary>
/// A column of a <see cref="IGBaseTable"/>
/// </summary>
public interface IGBaseColumn : IAsyncDisposable //TODO: Make column generic (generic type is type of the value of the column?)?
public interface IGBaseColumn : IAsyncDisposable
{
string Name { get; }
Type Type { get; }

@ -24,9 +24,6 @@ namespace GBase.Interfaces
/// <returns>True if successful, false if not</returns>
Task<bool> AddEntry(T entry, CancellationToken cancellationToken);
//T GetEntry(T entry); //TODO: This doesn't make sense... (passing instance of T to get the same instance back...)
/// <summary>
/// Remove an entry that implements <see cref="IGBaseObject"/> from this <see cref="IGBaseTable"/>
/// </summary>
@ -44,7 +41,7 @@ namespace GBase.Interfaces
/// <summary>
/// A <see cref="IGBase"/> table
/// </summary>
public interface IGBaseTable : IAsyncDisposable //TODO: make generic?
public interface IGBaseTable : IAsyncDisposable
{
/// <summary>
/// The <see cref="System.Type"/> of the class that this <see cref="IGBaseTable"/> represents

Loading…
Cancel
Save