Beispiel #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 CustomersController(ICustomersQueryProcessor customerQueryProcessor, IReviewsQueryProcessor reviewsQueryProcessor,
                                   IComplaintsQueryProcessor complaintsQueryProcessor)
        {
            _customersQueryProcessor  = customerQueryProcessor;
            _reviewsQueryProcessor    = reviewsQueryProcessor;
            _complaintsQueryProcessor = complaintsQueryProcessor;

            _userTypeComparer = new UserTypeComparer();
        }
 public LoginController(ISession session, ICustomersQueryProcessor customersQueryProcessor)
 {
     _session = session;
     _customersQueryProcessor = customersQueryProcessor;
 }
Beispiel #4
0
 public ComplaintsQueryProcessor(ISession session, IDecodesQueryProcessor decodesQueryProcessor, ICustomersQueryProcessor customersQueryProcessor) : base(session)
 {
     _decodesQueryProcessor   = decodesQueryProcessor;
     _customersQueryProcessor = customersQueryProcessor;
 }
Beispiel #5
0
 public CustomersController(ICustomersQueryProcessor query, IMapper mapper)
 {
     _query  = query;
     _mapper = mapper;
 }