コード例 #1
0
ファイル: WorkerService.cs プロジェクト: anaskret/CarRent
 public IEnumerable <GetWorkerDto> FilterWorkers(Dictionary <string, string> stringQueries, int[] salaryRange, int coordinatorId)
 {
     return(_workerRepository.Filter(stringQueries, salaryRange, coordinatorId)
            .Select(w => _workerConverter.FromWorkerToGetWorkerDto(w)));
 }