Beispiel #1
0
 public TrackingOrderController(ITrackingOrderService trackingOrderService, IOrderService orderService, IPostService postService,
                                IUserService userService, ITransactionService transactionService, INotificationService notificationService)
 {
     this.orderService         = orderService;
     this.userService          = userService;
     this.postService          = postService;
     this.transactionService   = transactionService;
     this.trackingOrderService = trackingOrderService;
     this.notificationService  = notificationService;
 }
Beispiel #2
0
 public TransactionController(IPostService postService, IUserService userService,
                              IOfferService offerService, ICityService cityService,
                              ICountryService countryService, IImageService imageService, IOrderService orderService,
                              ITripService tripService, ITrackingOrderService trackingOrderService, ITransactionService transactionService
                              , IEcommerceWebsiteService ecommerceWebsiteService)
 {
     this.postService             = postService;
     this.userService             = userService;
     this.offerService            = offerService;
     this.cityService             = cityService;
     this.countryService          = countryService;
     this.imageService            = imageService;
     this.orderService            = orderService;
     this.tripService             = tripService;
     this.trackingOrderService    = trackingOrderService;
     this.transactionService      = transactionService;
     this.ecommerceWebsiteService = ecommerceWebsiteService;
 }