Exemple #1
0
 public static bool Delete(string LoginID, string Account, string Status)
 {
     return(LoginModelService.Delete(LoginID, Account, Status));
 }
Exemple #2
0
 public static DataTable getAllUserDataTable(ref int total, int page = 0, int rows = 10)
 {
     return(LoginModelService.getAllUserDataTable(page, rows, ref total));
 }
Exemple #3
0
 public static bool CheckAccount(string Account)
 {
     return(LoginModelService.CheckAccount(Account));
 }
Exemple #4
0
 public static IList <Hashtable> getAllUserListHsah(string Status)
 {
     return(LoginModelService.getAllUserListHsah(Status));
 }
Exemple #5
0
 public static IList <Login> getAllUser(string Status)
 {
     return(LoginModelService.getAllUser(Status));
 }
Exemple #6
0
 /// <summary>
 /// 修改用户
 /// </summary>
 /// <param name="login"></param>
 /// <returns></returns>
 public static bool Update(Login login)
 {
     return(LoginModelService.Update(login));
 }
Exemple #7
0
 public static bool Insert(Login login)
 {
     return(LoginModelService.Insert(login));
 }
Exemple #8
0
 /// <summary>
 /// 登录验证
 /// Mcally  2019年2月19日10:04:44
 /// </summary>
 /// <param name="login"></param>
 /// <returns></returns>
 public static Login GetUser(Login login)
 {
     return(LoginModelService.GetUser(login));
 }