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/Ghra/Ghra_ZoneServices.cs

15 lines
452 B

namespace Tiobon.Core.Services;
/// <summary>
/// 厂区 (服务)
/// </summary>
public class Ghra_ZoneServices : BaseServices<Ghra_Zone, Ghra_ZoneDto, InsertGhra_ZoneInput, EditGhra_ZoneInput>, IGhra_ZoneServices
{
private readonly IBaseRepository<Ghra_Zone> _dal;
public Ghra_ZoneServices(ICaching caching, IBaseRepository<Ghra_Zone> dal)
{
this._dal = dal;
base.BaseDal = dal;
base._caching = caching;
}
}