Material Update Strategy was added
This commit is contained in:
@@ -8,8 +8,10 @@ namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
{
|
||||
public interface IDataRepository<T>
|
||||
{
|
||||
void Save(T entity);
|
||||
T Load(Guid Id);
|
||||
|
||||
void Create(T entity);
|
||||
void Update(T entity);
|
||||
void Delete(Guid Id);
|
||||
T GetById(Guid Id);
|
||||
List<T> GetAll();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user