diff --git a/src/Maps/Controllers/BusStopController.cs b/src/Maps/Controllers/BusStopController.cs index 7b13035..a681880 100755 --- a/src/Maps/Controllers/BusStopController.cs +++ b/src/Maps/Controllers/BusStopController.cs @@ -18,16 +18,16 @@ namespace Maps.Controllers private readonly IRoadDs _roadDs; private readonly ISettlementDs _settlementDs; private readonly IStateCommonDs _stateCommonDs; - private readonly IRegionDc _regionDc; + private readonly IRegionDs _regionDs; private readonly ISurfaceTypeDs _surfaceTypeDs; - public BusStopController(IBusStopDs BusStopDs, IRoadDs RoadDs, ISettlementDs SettlementDs, IRegionDc RegionDs, IStateCommonDs StateCommonDs, ISurfaceTypeDs SurfaceTypeDs) + public BusStopController(IBusStopDs BusStopDs, IRoadDs RoadDs, ISettlementDs SettlementDs, IRegionDs RegionDs, IStateCommonDs StateCommonDs, ISurfaceTypeDs SurfaceTypeDs) { _busStopDs = BusStopDs; _roadDs = RoadDs; _settlementDs = SettlementDs; _stateCommonDs = StateCommonDs; - _regionDc = RegionDs; + _regionDs = RegionDs; _surfaceTypeDs = SurfaceTypeDs; } @@ -73,7 +73,7 @@ namespace Maps.Controllers var StateCommon = await _stateCommonDs.GetSelectListAsync(); var Settlement = await _settlementDs.GetSelectListAsync(); var Road = await _roadDs.GetSelectListAsync(); - var Region = await _regionDc.GetSelectListAsync(); + var Region = await _regionDs.GetSelectListAsync(); CreateBusStopVm vm = new CreateBusStopVm { diff --git a/src/Maps/Startup.cs b/src/Maps/Startup.cs index 7a803b6..74f6c7d 100644 --- a/src/Maps/Startup.cs +++ b/src/Maps/Startup.cs @@ -42,7 +42,7 @@ namespace Maps services.AddScoped(); services.AddScoped(); - services.AddScoped(); + services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); -- libgit2 0.21.4