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
585 B
15 lines
585 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// Ghre_CertificateDesign (服务)
|
|
/// </summary>
|
|
public class Ghre_CertificateDesignServices : BaseServices<Ghre_CertificateDesign, Ghre_CertificateDesignDto, InsertGhre_CertificateDesignInput, EditGhre_CertificateDesignInput>, IGhre_CertificateDesignServices
|
|
{
|
|
private readonly IBaseRepository<Ghre_CertificateDesign> _dal;
|
|
public Ghre_CertificateDesignServices(ICaching caching, IBaseRepository<Ghre_CertificateDesign> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |