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; }
public ComplaintsQueryProcessor(ISession session, IDecodesQueryProcessor decodesQueryProcessor, ICustomersQueryProcessor customersQueryProcessor) : base(session) { _decodesQueryProcessor = decodesQueryProcessor; _customersQueryProcessor = customersQueryProcessor; }
public CustomersController(ICustomersQueryProcessor query, IMapper mapper) { _query = query; _mapper = mapper; }