Example #1
0
 public OrderService(IOrderRepository orderRepository,
                     IOrderResponseRepository responseRepository,
                     IOrderCategoryRepository categoryRepository,
                     IContextProvider contextProvider
                     )
 {
     _orderRepository    = orderRepository;
     _responseRepository = responseRepository;
     _categoryRepository = categoryRepository;
     _contextProvider    = contextProvider;
 }
Example #2
0
 public OrderRequestEventHandler(IMundiPaggService mundiPaggService, IOrderResponseRepository orderResponseRepository)
 {
     _mundiPaggService        = mundiPaggService;
     _orderResponseRepository = orderResponseRepository;
 }
Example #3
0
 public OrderResponseService(IOrderResponseRepository orderResponseRepository, IEventBus bus)
 {
     _orderResponseRepository = orderResponseRepository;
     _bus = bus;
 }