fix file alerts

This commit is contained in:
MahanCh
2025-04-16 14:50:53 +03:30
parent e625ed9a6e
commit 535e3943eb
7 changed files with 183 additions and 41 deletions

View File

@@ -11,5 +11,5 @@ public interface IFileAlertRepository : IRepository<long, FileAlert>
FileAlertViewModel GetDetails(long id);
void Remove(long id);
List<EditFileAlert> Search(FileAlertSearchModel searchModel);
Task<List<FileAlertViewModel>> GetFileAlerts();
Task<List<FileAlertViewModel>> GetFileAlerts(FileAlertSearchModel searchModel);
}