Commit före flytt avStatusparameter från point till round

This commit is contained in:
2025-09-13 08:43:17 +02:00
parent a2d47debfe
commit b4898660f2
13 changed files with 226 additions and 34 deletions

View File

@ -6,4 +6,5 @@ public interface IRepository<TEntity>
Task<TEntity?> Get(int id);
Task<int> Save(TEntity entity);
bool Delete(TEntity entity);
Task<bool> DeleteById(int Id);
}