You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
536 B

using Entity.DbModel.System;
using HybirdFrameworkCore.Autofac.Attribute;
using Repository.System;
using Service.Mgr;
namespace Service.System.Roles
{
/// <summary>
/// 系统用户角色服务
/// </summary>
[Scope("SingleInstance")]
public class SysUserRoleService : BaseServices<SysUserRole>
{
private readonly SysUserRoleRepository _sysUserRoleRep;
public SysUserRoleService(SysUserRoleRepository sysUserRoleRep)
{
_sysUserRoleRep = sysUserRoleRep;
}
}
}