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
497 B
15 lines
497 B
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// 声明 (服务)
|
|
/// </summary>
|
|
public class Ghrh_StatementServices : BaseServices<Ghrh_Statement, Ghrh_StatementDto, InsertGhrh_StatementInput, EditGhrh_StatementInput>, IGhrh_StatementServices
|
|
{
|
|
private readonly IBaseRepository<Ghrh_Statement> _dal;
|
|
public Ghrh_StatementServices(ICaching caching, IBaseRepository<Ghrh_Statement> dal)
|
|
{
|
|
this._dal = dal;
|
|
base.BaseDal = dal;
|
|
base._caching = caching;
|
|
}
|
|
} |