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