class1.cs~rfc5e001.tmp
来自「数据配置信息 登录数据库为sa 密码123 登录界面的用户信息:shichan」· TMP 代码 · 共 56 行
TMP
56 行
using System;
using System.Collections.Generic;
using System.Text;
namespace BLL
{
public class Class1
{
//返回用户登录信息
public bool GetInfo(string username,string userpwd)
{
DAL.Class1 AA=new DAL.Class1();
return AA.GetInfo(username, userpwd);
}
//返回用户的修改签名
public string getuserlaber(string username,string userpwd)
{
DAL.Class1 AB = new DAL.Class1();
return AB.getuserlaber(username,userpwd);
}
//修改用户信息
public bool updateuser(string username, string userpwd, string userlaber, string userimage)
{
DAL.Class1 AC = new DAL.Class1();
return AC.updateuser(username, userpwd,userlaber,userimage);
}
//显示用户的密码信息
public string showpwd(string username)
{
DAL.Class1 AD = new DAL.Class1();
return AD.showpwd(username);
}
//向表ClassText中添加用户留言信息
public bool inserly(string usertitle, string usercontents, int Userid, DateTime tiem)
{
DAL.Class1 AE = new DAL.Class1();
return AE.inserly(usertitle,usercontents,Userid,tiem);
}
//显示用户的UserID信息
public int showUserID(string username)
{
DAL.Class1 AF = new DAL.Class1();
return AF.showUserID(username);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?