コード例 #1
0
ファイル: MapsController.cs プロジェクト: NHadi/Exercises
 public MapsController(IMapManagementService mapManagementService)
 {
     _mapManagementService = mapManagementService;
 }
コード例 #2
0
 public TransportManagementController(ITransportManagementService transportManagementService,
                                      IMapManagementService mapManagementService)
 {
     _transportManagementService = transportManagementService;
     _mapManagementService       = mapManagementService;
 }