|
|
|
|
@ -7,6 +7,7 @@ using System.Collections.Generic; |
|
|
|
|
using System.Threading; |
|
|
|
|
using System.Threading.Tasks; |
|
|
|
|
using GBase.DataHandling.Factories; |
|
|
|
|
using GBase.Interfaces; |
|
|
|
|
using GBase.Interfaces.DataHandling; |
|
|
|
|
using GBase.Interfaces.DataHandling.Xml; |
|
|
|
|
using GBase.Interfaces.FileHandling; |
|
|
|
|
@ -48,6 +49,18 @@ namespace GBase.FileHandling |
|
|
|
|
return success; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Task AddEntry<T>(T entry, IGBaseTable table) |
|
|
|
|
{ |
|
|
|
|
//create new entry file |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Task<bool> RemoveEntry<T>(T entry) |
|
|
|
|
{ |
|
|
|
|
//remove entry file |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Set the value for the given property |
|
|
|
|
/// </summary> |
|
|
|
|
|