Пример #1
0
 public ReportsQueryProcessor(ICustomersQueryProcessor customersQueryProcessor, IOrdersQueryProcessor ordersQueryProcessor, IComplaintsQueryProcessor complaintsQueryProcessor, IParticipantsQueryProcessor participantsQueryProcessor, IFieldsQueryProcessor fieldsQueryProcessor)
 {
     _customersQueryProcessor    = customersQueryProcessor;
     _ordersQueryProcessor       = ordersQueryProcessor;
     _complaintsQueryProcessor   = complaintsQueryProcessor;
     _participantsQueryProcessor = participantsQueryProcessor;
     _fieldsQueryProcessor       = fieldsQueryProcessor;
 }
Пример #2
0
        public CustomersController(ICustomersQueryProcessor customerQueryProcessor, IReviewsQueryProcessor reviewsQueryProcessor,
                                   IComplaintsQueryProcessor complaintsQueryProcessor)
        {
            _customersQueryProcessor  = customerQueryProcessor;
            _reviewsQueryProcessor    = reviewsQueryProcessor;
            _complaintsQueryProcessor = complaintsQueryProcessor;

            _userTypeComparer = new UserTypeComparer();
        }
Пример #3
0
 public ComplaintsController(IComplaintsQueryProcessor ComplaintsQueryProcessor)
 {
     _complaintsQueryProcessor = ComplaintsQueryProcessor;
 }