using Entity.DbModel.Station; using HybirdFrameworkCore.Autofac.Attribute; using Repository.Station; namespace Service.Station; [Scope("SingleInstance")] public class ElecPriceModelVersionDetailServices : BaseServices { ElecPriceModelVersionDetailRepository _elecPriceModelVersionDetailRepository; public ElecPriceModelVersionDetailServices(ElecPriceModelVersionDetailRepository dal) { _elecPriceModelVersionDetailRepository = dal; BaseDal = dal; } }