OpenAuth.Net/OpenAuth.Domain/Core/UserExt.cs
2017-01-12 19:16:37 +08:00

19 lines
328 B
C#

using System;
namespace OpenAuth.Domain
{
/// <summary>
/// 用户ID
/// </summary>
public static class UserExt
{
public static void CheckPassword(this User user, string password)
{
if (user.Password != password)
{
throw new Exception("密码错误");
}
}
}
}