Auto clean code
This commit is contained in:
@@ -4,12 +4,16 @@ namespace skydiveLogs_api.DomainService.Repositories
|
||||
{
|
||||
public interface IRepository<T>
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
int Add(T newEntity);
|
||||
|
||||
IEnumerable<T> GetAll();
|
||||
|
||||
T GetById(int id);
|
||||
|
||||
bool Update(T updated);
|
||||
|
||||
int Add(T newEntity);
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user