- 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> /// <summary>
/// A column of a <see cref="IGBaseTable"/> /// A column of a <see cref="IGBaseTable"/>
/// </summary> /// </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; } string Name { get; }
Type Type { get; } Type Type { get; }

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

Loading…
Cancel
Save