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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Services/Ghrs/Ghrs_ParaDetailServices.cs

14 lines
464 B

namespace Tiobon.Core.Services;
/// <summary>
/// Ghrs_ParaDetail (服务)
/// </summary>
public class Ghrs_ParaDetailServices : BaseServices<Ghrs_ParaDetail, Ghrs_ParaDetailDto, InsertGhrs_ParaDetailInput, EditGhrs_ParaDetailInput>, IGhrs_ParaDetailServices
{
private readonly IBaseRepository<Ghrs_ParaDetail> _dal;
public Ghrs_ParaDetailServices(IBaseRepository<Ghrs_ParaDetail> dal)
{
this._dal = dal;
base.BaseDal = dal;
}
}