From 7c5aa0349889c122cc0cdd2f17fbcd124bc8cb8b Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 18 Sep 2020 10:18:45 +0200 Subject: [PATCH] - add todos --- GBase/GBaseTable.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GBase/GBaseTable.cs b/GBase/GBaseTable.cs index 887f8d8..92fa996 100644 --- a/GBase/GBaseTable.cs +++ b/GBase/GBaseTable.cs @@ -96,7 +96,7 @@ namespace GBase /// /// The given /// True if successful, false if not - public bool AddColumn(IGBaseColumn column) + public bool AddColumn(IGBaseColumn column) //TODO: if a column is added, it has to be added to every entry file as well { if (Columns.Contains(column)) return false; @@ -110,7 +110,7 @@ namespace GBase /// /// The given /// True if successful, false if not - public bool RemoveColumn(IGBaseColumn column) + public bool RemoveColumn(IGBaseColumn column) //TODO: if a column is removed, it has to be removed from every entry file as well { if (!Columns.Contains(column)) return false;