Beispiel #1
0
 public AdminsController(
     IAdminUserService adminUserService,
     IMapper mapper,
     IAutofillValuesService autofillValuesService)
 {
     _adminUserService      = adminUserService;
     _mapper                = mapper;
     _autofillValuesService = autofillValuesService;
 }
Beispiel #2
0
 public AdminsController(
     IAdminUserService adminUserService,
     IEmailVerificationService emailVerificationService,
     IMapper mapper,
     IAutofillValuesService autofillValuesService)
 {
     _adminUserService         = adminUserService;
     _emailVerificationService = emailVerificationService;
     _mapper = mapper;
     _autofillValuesService = autofillValuesService;
 }