Beispiel #1
0
 public GetCountULTLWNViewComponent(
     IUsersService usersService,
     ILoadsService loadsService,
     ITrucksService trucksService,
     INewsService newsService)
 {
     this.usersService  = usersService;
     this.loadsService  = loadsService;
     this.trucksService = trucksService;
     this.newsService   = newsService;
 }
Beispiel #2
0
 public TrucksController(
     ITrucksService trucksService,
     ICountriesService countriesService,
     IPriorityTypesService priorityTypesService,
     ITruckTypesService truckTypesService)
 {
     this.trucksService        = trucksService;
     this.countriesService     = countriesService;
     this.priorityTypesService = priorityTypesService;
     this.truckTypesService    = truckTypesService;
 }
Beispiel #3
0
 public TrucksController(ITrucksService trucksService)
 {
     this.trucksService = trucksService;
 }
 public OutboundOrderController(IStockRepository stockRepository, IProductRepository productRepository, ITrucksService trucksService)
 {
     this.stockRepository   = stockRepository;
     this.productRepository = productRepository;
     this.trucksService     = trucksService;
 }