yl
2022-06-08 95d9a449d1da8bfa6f3e38529205d4ed9caaefa3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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, string torg_code)
        {
            return LoginDAL.LoginSearch(username,password, torg_code);
        }
        #endregion
 
        #region[修改密码]
        public static ToMessage UpdateUserPassword(string username, string password, string newpassword, string torg_code)
        {
            return LoginDAL.UpdateUserPassword(username, password,newpassword, torg_code);
        }
        #endregion
    }
}