namespace Tiobon.Core.Services;
///
/// 参数配置组 (服务)
///
public class Ghre_ConfigGroupServices : BaseServices, IGhre_ConfigGroupServices
{
private readonly IBaseRepository _dal;
public Ghre_ConfigGroupServices(ICaching caching, IBaseRepository dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
public override async Task> QueryFilterPage(QueryBody filter, string condition, bool? IsEnable = true)
{
filter.orderBy = "SortNo ASC";
var result = await base.QueryFilterPage(filter, condition, IsEnable);
return result;
}
}