示例#1
0
 public SCS010Controller(
     Web.Models.User.ApplicationUserManager userManager,
     Common.DataSvc.CommonSvcDbContext commonSvcDbContext
     ) : base(userManager)
 {
     this._commonSvcDbContext = commonSvcDbContext;
 }
示例#2
0
 public BaseController(
     Web.Models.User.ApplicationUserManager userManager,
     IConfiguration configuration
     )
 {
     this._userManager   = userManager;
     this._configuration = configuration;
 }
示例#3
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;
 }
示例#4
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;
 }
示例#5
0
 public BaseController(
     Web.Models.User.ApplicationUserManager userManager
     )
 {
     this._userManager = userManager;
 }