Ejemplo n.º 1
0
 public SCS021Controller(
     Web.Models.User.ApplicationUserManager userManager,
     Web.Models.User.ApplicationSignInManager signInManager,
     Web.Models.User.ApplicationRoleManager roleManager,
     Web.Services.ApplicationDbContext appDBContext,
     Common.DataSvc.CommonSvcDbContext commonSvcDbContext
     ) : base(userManager)
 {
     this._userManager        = userManager;
     this._signInManager      = signInManager;
     this._roleManager        = roleManager;
     this._appDbContext       = appDBContext;
     this._commonSvcDbContext = commonSvcDbContext;
 }
Ejemplo n.º 2
0
 public CMS010Controller(
     Web.Models.User.ApplicationUserManager userManager,
     Web.Models.User.ApplicationSignInManager signInManager,
     Web.Models.User.ApplicationRoleManager roleManager,
     Web.Services.ApplicationDbContext appDBContext,
     Common.DataSvc.CommonSvcDbContext commonSvcDbContext,
     IConfiguration configuration
     ) : base(userManager, configuration)
 {
     this._userManager        = userManager;
     this._signInManager      = signInManager;
     this._roleManager        = roleManager;
     this._appDbContext       = appDBContext;
     this._commonSvcDbContext = commonSvcDbContext;
     this._configuration      = configuration;
 }