示例#1
0
 public UnitsController(
     AppQueryService appQueryService,
     Dispatcher dispatcher)
 {
     this.appQueryService = appQueryService;
     this.dispatcher      = dispatcher;
 }
示例#2
0
 public SendOrderProblemHandler(
     AppQueryService appQueryService,
     IMailService mailService)
 {
     this.appQueryService = appQueryService;
     this.mailService     = mailService;
 }
示例#3
0
 public MessagesController(AppQueryService appQuery, IMessagesService messagesService)
 {
     this.appQuery        = appQuery;
     this.messagesService = messagesService;
 }
示例#4
0
 public ItemsController(AppQueryService queryService)
 {
     this.queryService = queryService;
 }
示例#5
0
 public OrdersController(Dispatcher dispatcher, AppQueryService queryService)
 {
     this.dispatcher   = dispatcher;
     this.queryService = queryService;
 }