예제 #1
0
 //private IUserRoleStore<TUser> userRole { get; set; }
 public SDHCCUserStore(ISDHCCDbContext db)
 {
     this.db = db;
     //this.userRole = userRole;
 }
예제 #2
0
 public SDHCIDbSet(ISDHCCDbContext db)
 {
     this.db = db;
 }
예제 #3
0
 public SDHCCRoleStore(ISDHCCDbContext db)
 {
     this.db = db;
 }
예제 #4
0
 public SDHCOrm(ISDHCCDbContext db)
 {
     this.db = db;
 }
예제 #5
0
 public TestController(ISDHCCDbContext db, ISDHCCIdentity us)
 {
     this.db = db;
     this.us = us;
 }
예제 #6
0
 public DropDownController(ISDHCCDbContext db)
 {
     this.db = db;
 }
 public SDHCCUserRoleStore(ISDHCCDbContext db, IRoleStore <TRole> roles)
 {
     this.db    = db;
     this.roles = roles;
 }
예제 #8
0
 public PageController(ISDHCCDbContext db, ISDHCCIdentity users)
 {
     this.db    = db;
     setting    = E.Setting;
     this.users = users;
 }