Example #1
0
 public RegistrationController(ICommandBus commandBus, IOrderViewService orderDao, IConferenceViewService conferenceDao)
     : base(conferenceDao)
 {
     this.commandBus = commandBus;
     this.orderDao   = orderDao;
 }
 public DefaultController(IConferenceViewService dao)
 {
     this.dao = dao;
 }
 public CachingConferenceService(IConferenceViewService decoratedDao, ICacheManager cache)
 {
     this.decoratedDao = decoratedDao;
     this.cache        = cache;
 }
 public ConferenceController(IConferenceViewService dao)
 {
     this.dao = dao;
 }
Example #5
0
 public OrderController(IConferenceViewService conferenceDao, IOrderViewService orderDao, ICommandBus bus)
     : base(conferenceDao)
 {
     this.orderDao = orderDao;
     this.bus      = bus;
 }
Example #6
0
 protected ConferenceTenantController(IConferenceViewService conferenceDao)
 {
     this.ConferenceDao = conferenceDao;
 }