Esempio n. 1
0
 //CheckUserLogin
 public string CheckUserLogin(string CustId, string Paswd)
 {
     try
     {
         var txts = loginDAL.CheckUserLogin(CustId, Paswd);
         return(txts);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }