Esempio n. 1
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager,
                          IDokmeeService dokmeeService, IConfigurationService configurationService)
 {
     UserManager           = userManager;
     SignInManager         = signInManager;
     DokmeeService         = dokmeeService;
     _configurationService = configurationService;
 }
Esempio n. 2
0
 public HomeController(IDokmeeService dokmeeService, IMapper mapper, ISessionHelperService sessionHelperService, IUserService userService, IConfigurationService configurationService)
 {
     _dokmeeService        = dokmeeService;
     _mapper               = mapper;
     _sessionHelperService = sessionHelperService;
     _userService          = userService;
     _configurationService = configurationService;
 }
Esempio n. 3
0
 public HomeController(IDokmeeService dokmeeService, IMapper mapper, ISessionHelperService sessionHelperService)
 {
     _dokmeeService        = dokmeeService;
     _mapper               = mapper;
     _sessionHelperService = sessionHelperService;
 }