narsil/Tanshu.Accounts.Repository/RoleBI.cs
2014-10-16 16:45:03 +05:30

12 lines
260 B
C#

using System;
using Tanshu.Accounts.Entities.Auth;
namespace Tanshu.Accounts.Repository
{
public class RoleBI : UnitOfWork<Role>
{
public bool IsAllowed(Guid userID, string roleName)
{ throw new NotImplementedException(); }
}
}