Exemplo n.º 1
0
 public static bool Delete(string LoginID, string Account, string Status)
 {
     return(LoginModelService.Delete(LoginID, Account, Status));
 }
Exemplo n.º 2
0
 public static DataTable getAllUserDataTable(ref int total, int page = 0, int rows = 10)
 {
     return(LoginModelService.getAllUserDataTable(page, rows, ref total));
 }
Exemplo n.º 3
0
 public static bool CheckAccount(string Account)
 {
     return(LoginModelService.CheckAccount(Account));
 }
Exemplo n.º 4
0
 public static IList <Hashtable> getAllUserListHsah(string Status)
 {
     return(LoginModelService.getAllUserListHsah(Status));
 }
Exemplo n.º 5
0
 public static IList <Login> getAllUser(string Status)
 {
     return(LoginModelService.getAllUser(Status));
 }
Exemplo n.º 6
0
 /// <summary>
 /// 修改用户
 /// </summary>
 /// <param name="login"></param>
 /// <returns></returns>
 public static bool Update(Login login)
 {
     return(LoginModelService.Update(login));
 }
Exemplo n.º 7
0
 public static bool Insert(Login login)
 {
     return(LoginModelService.Insert(login));
 }
Exemplo n.º 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));
 }