This commit is contained in:
2026-01-23 22:52:51 +01:00
parent e84d6e98c9
commit 668f321c54
51 changed files with 580 additions and 3329 deletions

View File

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