This commit is contained in:
SamSys
2024-12-22 18:50:35 +03:30
parent ea70602947
commit f53600a9d5
2 changed files with 2 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ namespace Company.Domain.RollCallAgg
EditRollCall GetByEmployeeIdAndWorkshopId(long employeeId, long workshopId);
EditRollCall GetById(long id);
List<RollCallViewModel> Search(RollCallSearchModel searchModel);

View File

@@ -32,10 +32,7 @@ public class RollCallRepository : RepositoryBase<long, RollCall>, IRollCallRepos
throw new NotImplementedException();
}
public List<RollCallViewModel> Search(RollCallSearchModel searchModel)
{
throw new NotImplementedException();
}