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.
15 lines
555 B
15 lines
555 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghrs_DataRoleDetail (服务)
|
|
/// </summary>
|
|
public class Ghrs_DataRoleDetailServices : BaseServices<Ghrs_DataRoleDetail, Ghrs_DataRoleDetailDto, InsertGhrs_DataRoleDetailInput, EditGhrs_DataRoleDetailInput>, IGhrs_DataRoleDetailServices
|
|
{
|
|
private readonly IBaseRepository<Ghrs_DataRoleDetail> _dal;
|
|
public Ghrs_DataRoleDetailServices(ICaching caching, IBaseRepository<Ghrs_DataRoleDetail> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |