You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
427 B
18 lines
427 B
3 years ago
|
using Pingchuan.BeijingSafeguard.DAL;
|
||
|
using Pingchuan.BeijingSafeguard.Model;
|
||
|
|
||
|
namespace Pingchuan.BeijingSafeguard.BLL
|
||
|
{
|
||
|
public class UserBLL
|
||
|
{
|
||
|
public static User GetUser(string name,string password)
|
||
|
{
|
||
|
return UserDAL.Get(name, password);
|
||
|
}
|
||
|
|
||
|
public static User GetUserIdByRealName(string realName)
|
||
|
{
|
||
|
return UserDAL.Get(realName);
|
||
|
}
|
||
|
}
|
||
|
}
|