public bool AddUpdateClientUser(string strSql)
 {
     return(Sys_client_userBiz.AddUpdateClientUser(strSql));
 }
 public bool DeleteClientUser(string id)
 {
     return(Sys_client_userBiz.DeleteClientUser(id));
 }
 public bool ExistsUserId(string strWhere)
 {
     return(Sys_client_userBiz.ExistsUserId(strWhere));
 }
 public bool AddClientUser(FoodSafety.Model.sys_client_user model)
 {
     return(Sys_client_userBiz.AddClientUser(model));
 }
 public DataTable GetUserModel(FoodSafety.Model.sys_client_user loginUser)
 {
     return(Sys_client_userBiz.GetUserModel(loginUser));
 }
Example #6
0
 public DataTable GetSysClientUser(string strWhere)
 {
     return(Sys_client_userBiz.GetSysClientUser(strWhere));
 }