Exemplo n.º 1
0
 public WorkerManager(IWorkerDal workerDal, ISalaryService salaryService, IMapper mapper, IWorkerDepartmentTypeService workerDepartmentTypeService)
 {
     _workerDal     = workerDal;
     _salaryService = salaryService;
     _mapper        = mapper;
     _workerDepartmentTypeService = workerDepartmentTypeService;
 }
Exemplo n.º 2
0
 public WorkerManager(IUserService userService, IWorkerDal workerDal, IUserRoleDal userRoleDal, IUserDal userDal, ICityService cityService, IGenderDal genderDal)
 {
     _userService = userService;
     _workerDal   = workerDal;
     _userRoleDal = userRoleDal;
     _userDal     = userDal;
     _cityService = cityService;
     _genderDal   = genderDal;
 }
Exemplo n.º 3
0
 public WorkerManager()
 {
     _workerDal = new EfWorkerDal();
 }