Example #1
0
 public ReportsQueryProcessor(ICustomersQueryProcessor customersQueryProcessor, IOrdersQueryProcessor ordersQueryProcessor, IComplaintsQueryProcessor complaintsQueryProcessor, IParticipantsQueryProcessor participantsQueryProcessor, IFieldsQueryProcessor fieldsQueryProcessor)
 {
     _customersQueryProcessor    = customersQueryProcessor;
     _ordersQueryProcessor       = ordersQueryProcessor;
     _complaintsQueryProcessor   = complaintsQueryProcessor;
     _participantsQueryProcessor = participantsQueryProcessor;
     _fieldsQueryProcessor       = fieldsQueryProcessor;
 }
 public OrdersQueryProcessor(ISession session, CustomersQueryProcessor customersQueryProcessor, FieldsQueryProcessor fieldsQueryProcessor,
                             IDecodesQueryProcessor decodesQueryProcessor) : base(session)
 {
     _customersQueryProcessor    = customersQueryProcessor;
     _fieldsQueryProcessor       = fieldsQueryProcessor;
     _decodesQueryProcessor      = decodesQueryProcessor;
     _participantsQueryProcessor = new ParticipantsQueryProcessor(session, customersQueryProcessor, this, decodesQueryProcessor);
 }
Example #3
0
 public ParticipantsController(IParticipantsQueryProcessor participantsQueryProcessor)
 {
     _participantsQueryProcessor = participantsQueryProcessor;
 }
Example #4
0
 public OrdersController(IOrdersQueryProcessor ordersQueryProcessor, IParticipantsQueryProcessor participantsQueryProcessor)
 {
     _ordersQueryProcessor       = ordersQueryProcessor;
     _participantsQueryProcessor = participantsQueryProcessor;
 }