using XYY.Model.Standard; using XYY.Core.Standard.Data.Infrastructure; namespace XYY.Data.Standard { public interface IUserRolePermissionRepository : IBaseRepository { } public class UserRolePermissionRepository : BaseRepository, IUserRolePermissionRepository { public UserRolePermissionRepository(IUnitOfWork unitOfWork) : base(unitOfWork) { } } }