|
|
|
|
@ -29,7 +29,12 @@ namespace GBase.Client.Services |
|
|
|
|
/// <returns>True if successful, false if not</returns> |
|
|
|
|
public bool AddEntry() |
|
|
|
|
{ |
|
|
|
|
throw new System.NotImplementedException(); |
|
|
|
|
IGBaseTableService channel = OpenChannel(); |
|
|
|
|
bool ret = channel.AddEntry(); |
|
|
|
|
|
|
|
|
|
CloseChannel(channel); |
|
|
|
|
|
|
|
|
|
return ret; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
@ -38,7 +43,12 @@ namespace GBase.Client.Services |
|
|
|
|
/// <returns>True if successful, false if not</returns> |
|
|
|
|
public bool RemoveEntry() |
|
|
|
|
{ |
|
|
|
|
throw new System.NotImplementedException(); |
|
|
|
|
IGBaseTableService channel = OpenChannel(); |
|
|
|
|
bool ret = channel.RemoveEntry(); |
|
|
|
|
|
|
|
|
|
CloseChannel(channel); |
|
|
|
|
|
|
|
|
|
return ret; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |