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
535 B
15 lines
535 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghrc_PeriodMaster (服务)
|
|
/// </summary>
|
|
public class Ghrc_PeriodMasterServices : BaseServices<Ghrc_PeriodMaster, Ghrc_PeriodMasterDto, InsertGhrc_PeriodMasterInput, EditGhrc_PeriodMasterInput>, IGhrc_PeriodMasterServices
|
|
{
|
|
private readonly IBaseRepository<Ghrc_PeriodMaster> _dal;
|
|
public Ghrc_PeriodMasterServices(ICaching caching, IBaseRepository<Ghrc_PeriodMaster> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |