diff --git a/GBase/Interfaces/IGBaseColumn.cs b/GBase/Interfaces/IGBaseColumn.cs index a6687cf..25f1d88 100644 --- a/GBase/Interfaces/IGBaseColumn.cs +++ b/GBase/Interfaces/IGBaseColumn.cs @@ -9,7 +9,7 @@ namespace GBase.Interfaces /// /// A column of a /// - 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; } diff --git a/GBase/Interfaces/IGBaseTable.cs b/GBase/Interfaces/IGBaseTable.cs index fc73f9e..dec83a8 100644 --- a/GBase/Interfaces/IGBaseTable.cs +++ b/GBase/Interfaces/IGBaseTable.cs @@ -24,9 +24,6 @@ namespace GBase.Interfaces /// True if successful, false if not Task 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...) - /// /// Remove an entry that implements from this /// @@ -44,7 +41,7 @@ namespace GBase.Interfaces /// /// A table /// - public interface IGBaseTable : IAsyncDisposable //TODO: make generic? + public interface IGBaseTable : IAsyncDisposable { /// /// The of the class that this represents