Refacto
This commit is contained in:
@@ -7,11 +7,13 @@ namespace skydiveLogs_api.DomainService.Repositories
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
T GetAll(User user);
|
||||
IEnumerable<T> GetAll(User user);
|
||||
|
||||
int Add(T newEntity);
|
||||
int Add(IEnumerable<T> newEntity);
|
||||
|
||||
bool Update(T updated);
|
||||
bool Update(IEnumerable<T> updatedEntity, User user);
|
||||
|
||||
bool Delete(User user);
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user