Auto clean code

This commit is contained in:
Sébastien André
2021-04-22 23:31:08 +02:00
parent 1c66efa4e8
commit 0d136a938a
29 changed files with 325 additions and 227 deletions

View File

@@ -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
}
}