Example #1
0
 public OrdersService(IOrdersRepository ordersRepository, CustomersService customersService, EventsService eventsService, CarsService carsService)
 {
     this.ordersRepository = ordersRepository;
     this.customersService = customersService;
     this.eventsService    = eventsService;
     this.carsService      = carsService;
 }
 public CustomersService(ICustomersRepository customersRepository, EventsService eventsService)
 {
     this.customersRepository = customersRepository;
     this.eventsService       = eventsService;
 }
 public CarsService(EventsService eventService, ICarsRepository carRepository)
 {
     this.carRepository = carRepository;
     this.eventsService = eventService;
 }