コード例 #1
0
ファイル: Login.cs プロジェクト: twerner93/UserAuth.Net
 public Login()
 {
     _db = new UserLoginContext();
 }
コード例 #2
0
 public UserLoginRepository(IUserLoginContext db)
 {
     _db = db;
 }
コード例 #3
0
 public UserLoginProvider(IUserLoginContext db)
 {
     _db        = db;
     _dbContext = _db.GetDbContext();
 }
コード例 #4
0
 public Administration()
 {
     _db = new UserLoginContext();
 }
コード例 #5
0
 public Registration()
 {
     _db = new UserLoginContext();
 }