예제 #1
0
 public AppRepository(PassDbContext context,
                      IPasswordHash passHash,
                      IEncryptPassword encryptPass)
 {
     _context     = context;
     _passHash    = passHash;
     _encryptPass = encryptPass;
 }
예제 #2
0
 public AuthRepository(PassDbContext context,
                       IPasswordHash passHash,
                       IEncryptPassword encryptPassword)
 {
     _context         = context;
     _passHash        = passHash;
     _encryptPassword = encryptPassword;
 }
예제 #3
0
 public ApiController(IDeleteUser deleteUser, IInsertUser insertUser, IGetUser getUser, IUpdateUser updateUser,
                      IEncryptPassword encryptPassword)
 {
     _deleteUser      = deleteUser;
     _insertUser      = insertUser;
     _getUser         = getUser;
     _updateUser      = updateUser;
     _encryptPassword = encryptPassword;
 }
예제 #4
0
 public AuthRepository(DataContext context,
                       IEncryptPassword encrypt)
 {
     _context = context;
     _encrypt = encrypt;
 }