namespace Tiobon.Core.Services;
///
/// 声明 (服务)
///
public class Ghrh_StatementServices : BaseServices, IGhrh_StatementServices
{
private readonly IBaseRepository _dal;
public Ghrh_StatementServices(ICaching caching, IBaseRepository dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}