public ReviewService(BusTicketsSystemContext context, ICustomerService customerService, IBusCompanyService busCompanyService)
 {
     this.context           = context;
     this.customerService   = customerService;
     this.busCompanyService = busCompanyService;
 }
 public PrintReviewsCommand(IBusCompanyService busCompanyService, IReviewService reviewService)
 {
     this.busCompanyService = busCompanyService;
     this.reviewService     = reviewService;
 }
 public AddBusCompanyCommand(IBusCompanyService busCompanyService)
 {
     this._busCompanyService = busCompanyService;
 }
 public PrintReviewsCommand(IBusCompanyService service)
 {
     this.service = service;
 }
 public TripService(BusTicketContext dbContext, IBusCompanyService busCompany, IBusStationService busStationService)
 {
     this._dbContext         = dbContext;
     this._busCompanyService = busCompany;
     this._busStationService = busStationService;
 }
Esempio n. 6
0
 public PublishReviewCommand(ICustomerService customerService, IBusCompanyService busCompanyService, IReviewService reviewService)
 {
     this.customerService   = customerService;
     this.busCompanyService = busCompanyService;
     this.reviewService     = reviewService;
 }
 public ReviewService(BusTicketContext dbContext, ICustomerService customerService, IBusCompanyService busCompanyService)
 {
     this._dbContext         = dbContext;
     this._customerService   = customerService;
     this._busCompanyService = busCompanyService;
 }
 public AddTripCommand(ITripService tripService, IBusStationService busStationService, IBusCompanyService busCompanyService)
 {
     this.tripService       = tripService;
     this.busStationService = busStationService;
     this.busCompanyService = busCompanyService;
 }
 public PrintReviewsCommand(IBusCompanyService busCompanyService)
 {
     this._busCompanyService = busCompanyService;
 }