public IEnumerable <WorkersDTO> GetAllWorkers(string filterStringSection) { var workersEntity = mIWorkers.GetAllWorkers(); if (!string.IsNullOrEmpty(filterStringSection)) { workersEntity = workersEntity.Where(x => x.Section == filterStringSection); } return(mApplicationMapper.Map(workersEntity)); }