Esempio n. 1
0
 public TransportSonucController(ITransportSonucService transportSonucService,
                                 IDepoService depoService,
                                 IFabrikaService fabrikaService)
 {
     _tss = transportSonucService;
     _ds  = depoService;
     _fs  = fabrikaService;
 }
Esempio n. 2
0
 public TransportController(ITransportService transportService,
                            IFabrikaService fabrikaService,
                            IDepoService depoService,
                            ITransportMaliyetService transportMaliyetService,
                            ITransportSonucService transportSonucService)
 {
     _transportService        = transportService;
     _fabrikaService          = fabrikaService;
     _depoService             = depoService;
     _transportMaliyetService = transportMaliyetService;
     _transportSonucService   = transportSonucService;
 }
Esempio n. 3
0
 public TransportManager(ITransportOptimization transportOptimization,
                         ITransportSonucService transportSonucService)
 {
     _transportOptimization = transportOptimization;
     _transportSonucService = transportSonucService;
 }