using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; using VueWebApi.DLL.DAL; using VueWebApi.Tools; namespace VueWebApi.DLL.BLL { public class LoginBLL { #region [登录查询] public static DataTable LoginSearch(string username,string password) { return LoginDAL.LoginSearch(username,password); } #endregion #region[查询菜单功能] public static ToMessage LoginMenu(string usercode) { return LoginDAL.LoginMenu(usercode); } #endregion #region[修改密码] public static ToMessage UpdateUserPassword(string username, string password, string newpassword) { return LoginDAL.UpdateUserPassword(username, password,newpassword); } #endregion } }