예제 #1
0
 public AccountController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, IAccountService accountService, ICommonFunctions commonFunctions,
                          IOptions <Configuration> config, IMapper mapper, ILookupItemService lookupItemService, RoleManager <ApplicationRole> roleManager)
 {
     this.userManager       = userManager;
     this.signInManager     = signInManager;
     this.accountService    = accountService;
     this.commonFunctions   = commonFunctions;
     this.config            = config;
     this.mapper            = mapper;
     this.lookupItemService = lookupItemService;
     this.roleManager       = roleManager;
 }
예제 #2
0
 public LookupController(ILookupItemService lookupItemService, ICommonFunctions commonFunctions)
 {
     this.lookupItemService = lookupItemService;
     this.commonFunctions   = commonFunctions;
 }