Beispiel #1
0
 public IdentityController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, IConfiguration configuration, CustomerService customerService, LOCService locService)
 {
     _userManager     = userManager;
     _signInManager   = signInManager;
     _configuration   = configuration;
     _locService      = locService;
     _customerService = customerService;
 }
 public LOCController(LOCService locservice)
 {
     _locservice = locservice;
 }