public SearchForUsersController(IUserService <SkillDTO, SubSkillDTO, SpecifyingSkillDTO, LevelDTO, SpecifyingSkillForSearchDTO> userService,
                                 IIdentityService identityService, IMapperFactoryWEB mapperFactory)
 {
     _userService     = userService;
     _identityService = identityService;
     _mapper          = mapperFactory.CreateMapperWEB();
 }
Пример #2
0
 public AccountController(IIdentityService identityService, IMapperFactoryWEB mapperFactory)
 {
     _identityService = identityService;
     _mapper          = mapperFactory.CreateMapperWEB();
 }
Пример #3
0
 public ClientController(IClientService clientService, IIdentityService identityService, IMapperFactoryWEB mapperFactory)
 {
     _clientService   = clientService;
     _identityService = identityService;
     _mapper          = mapperFactory.CreateMapperWEB();
 }
Пример #4
0
 public RealtorController(IRealtorService realtorService, IIdentityService identityService, IMapperFactoryWEB mapperFactory)
 {
     _realtorService  = realtorService;
     _identityService = identityService;
     _mapper          = mapperFactory.CreateMapperWEB();
 }
 public ManagerSkillController(ISubSkillService <SubSkillDTO> subSkillService, ISkillService <SkillDTO> skillService, IMapperFactoryWEB mapperFactory)
 {
     _subSkillService = subSkillService;
     _skillService    = skillService;
     _mapper          = mapperFactory.CreateMapperWEB();
 }
Пример #6
0
 public UserController(IUserService <SkillDTO, SubSkillDTO, SpecifyingSkillDTO, LevelDTO, SpecifyingSkillForSearchDTO> managerService, IMapperFactoryWEB mapperFactory)
 {
     _userService = managerService;
     _mapper      = mapperFactory.CreateMapperWEB();
 }