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