//CheckAdminLogin public string CheckAdminLogin(string userId, string password) { try { var txts = loginDAL.CheckAdminLogin(userId, password); return(txts); } catch (Exception ex) { throw ex; } }