diff --git a/GBase.Client/Services/GBaseTableService.cs b/GBase.Client/Services/GBaseTableService.cs
index 5d2469a..1d8f3e8 100644
--- a/GBase.Client/Services/GBaseTableService.cs
+++ b/GBase.Client/Services/GBaseTableService.cs
@@ -29,7 +29,12 @@ namespace GBase.Client.Services
/// True if successful, false if not
public bool AddEntry()
{
- throw new System.NotImplementedException();
+ IGBaseTableService channel = OpenChannel();
+ bool ret = channel.AddEntry();
+
+ CloseChannel(channel);
+
+ return ret;
}
///
@@ -38,7 +43,12 @@ namespace GBase.Client.Services
/// True if successful, false if not
public bool RemoveEntry()
{
- throw new System.NotImplementedException();
+ IGBaseTableService channel = OpenChannel();
+ bool ret = channel.RemoveEntry();
+
+ CloseChannel(channel);
+
+ return ret;
}
}
}
\ No newline at end of file