Files
coreshoppro/CoreCms.Net.Services/System/SysUserRoleServices.cs
2021-12-20 21:27:32 +08:00

33 lines
1.2 KiB
C#

/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using CoreCms.Net.IRepository;
using CoreCms.Net.IRepository.UnitOfWork;
using CoreCms.Net.IServices;
using CoreCms.Net.Model.Entities;
namespace CoreCms.Net.Services
{
/// <summary>
/// 用户角色关联表 接口实现
/// </summary>
public class SysUserRoleServices : BaseServices<SysUserRole>, ISysUserRoleServices
{
private readonly ISysUserRoleRepository _dal;
private readonly IUnitOfWork _unitOfWork;
public SysUserRoleServices(IUnitOfWork unitOfWork, ISysUserRoleRepository dal)
{
_dal = dal;
BaseDal = dal;
_unitOfWork = unitOfWork;
}
}
}