From 52aedb99a96cf4cca471b99fc165e3a75c1859e9 Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 13 Nov 2020 19:35:28 +0100 Subject: [PATCH] - remove todos --- GBase/Interfaces/IGBaseColumn.cs | 2 +- GBase/Interfaces/IGBaseTable.cs | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) 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