コード例 #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 LoginController(ISession session, ICustomersQueryProcessor customersQueryProcessor)
 {
     _session = session;
     _customersQueryProcessor = customersQueryProcessor;
 }
コード例 #4
0
 public ComplaintsQueryProcessor(ISession session, IDecodesQueryProcessor decodesQueryProcessor, ICustomersQueryProcessor customersQueryProcessor) : base(session)
 {
     _decodesQueryProcessor   = decodesQueryProcessor;
     _customersQueryProcessor = customersQueryProcessor;
 }
コード例 #5
0
ファイル: CustomersController.cs プロジェクト: radtek/OMSWeb
 public CustomersController(ICustomersQueryProcessor query, IMapper mapper)
 {
     _query  = query;
     _mapper = mapper;
 }