narsil/Tanshu.Accounts.Repository/BusinessLayer/RoleBI.cs

12 lines
260 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using Tanshu.Accounts.Entities.Auth;
2010-03-02 17:56:21 +00:00
namespace Tanshu.Accounts.Repository
2010-03-02 17:56:21 +00:00
{
public class RoleBI : UnitOfWork<Role>
2010-03-02 17:56:21 +00:00
{
public bool IsAllowed(Guid userID, string roleName)
{ throw new NotImplementedException(); }
2010-03-02 17:56:21 +00:00
}
}