?? class1.cs~rfc5e001.tmp
字號:
?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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -