刘磊
2025-11-11 6fed1f731b16c1820a43fc34130a70b21465e2bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using WIDESEA_IServices;
using WIDESEAWCS_BasicInfoRepository;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_BasicInfoService
{
    public partial class Dt_RoadWayService : ServiceBase<Dt_RoadWay, IDt_RoadWayRepository>, IDt_RoadWayService
    {
        private readonly ISys_ConfigService _sys_ConfigService;
 
        public Dt_RoadWayService(IDt_RoadWayRepository BaseDal, ISys_ConfigService sys_ConfigService) : base(BaseDal)
        {
            _sys_ConfigService = sys_ConfigService;
        }
    }
}