Ejemplo n.º 1
0
 public DataSet  getLoginRollMenuBL(string LoginId)
 {
     obj = new AuthenticateModuleDL();
     return(obj.getLoginRollMenuDL(LoginId));
 }
Ejemplo n.º 2
0
 public bool UpdateLoginDateTimeBL(string LoginId)
 {
     obj = new AuthenticateModuleDL();
     return(obj.UpdateLoginDateTimeDL(LoginId));
 }
Ejemplo n.º 3
0
 public string GetMinistryIdBL(string LoginId)
 {
     obj = new AuthenticateModuleDL();
     return(obj.GetMinistryIdDL(LoginId));
 }
Ejemplo n.º 4
0
 public void UpdateFaildLoginAttempsBL(string LoginId, int newFailedAttempts)
 {
     obj = new AuthenticateModuleDL();
     obj.UpdateFaildLoginAttempsDL(LoginId, newFailedAttempts);
 }
Ejemplo n.º 5
0
 public string AuthenticateGetUseridBL(string LoginId, string SaltedPasswordHash, string Salt)
 {
     obj = new AuthenticateModuleDL();
     return(obj.AuthenticateGetUseridDL(LoginId, SaltedPasswordHash, Salt));
 }