IUserRolePermissionRepository.cs 449 B

1234567891011121314151617
  1. using XYY.Model.Standard;
  2. using XYY.Core.Standard.Data.Infrastructure;
  3. namespace XYY.Data.Standard
  4. {
  5. public interface IUserRolePermissionRepository : IBaseRepository<User_RolePermission>
  6. {
  7. }
  8. public class UserRolePermissionRepository : BaseRepository<User_RolePermission>, IUserRolePermissionRepository
  9. {
  10. public UserRolePermissionRepository(IUnitOfWork unitOfWork)
  11. : base(unitOfWork)
  12. { }
  13. }
  14. }