public AccountController(SignInManager <ApplicationUser> signInManager, IAppUsersManagerService appUsersManagerService, ApplicationDbContext context)
 {
     _signInManager          = signInManager;
     _appUsersManagerService = appUsersManagerService;
     _appdb = context;
 }
Example #2
0
 public UpdateService(IBotService botService, IAppUsersManagerService appUsersManagerService, ApplicationDbContext context)
 {
     _botService             = botService;
     _appUsersManagerService = appUsersManagerService;
     _appdb = context;
 }