public DataSet  getLoginRollMenuBL(string LoginId)
 {
     obj = new AuthenticateModuleDL();
     return(obj.getLoginRollMenuDL(LoginId));
 }
 public bool UpdateLoginDateTimeBL(string LoginId)
 {
     obj = new AuthenticateModuleDL();
     return(obj.UpdateLoginDateTimeDL(LoginId));
 }
 public string GetMinistryIdBL(string LoginId)
 {
     obj = new AuthenticateModuleDL();
     return(obj.GetMinistryIdDL(LoginId));
 }
 public void UpdateFaildLoginAttempsBL(string LoginId, int newFailedAttempts)
 {
     obj = new AuthenticateModuleDL();
     obj.UpdateFaildLoginAttempsDL(LoginId, newFailedAttempts);
 }
 public string AuthenticateGetUseridBL(string LoginId, string SaltedPasswordHash, string Salt)
 {
     obj = new AuthenticateModuleDL();
     return(obj.AuthenticateGetUseridDL(LoginId, SaltedPasswordHash, Salt));
 }