Ejemplo n.º 1
0
 public HomeController(IUserBus iUserBus, ICategoryBus iCategoryBus, IEventBus iEventBus)
 {
     _iUserBus     = iUserBus;
     _iCategoryBus = iCategoryBus;
     _iEventBus    = iEventBus;
 }
Ejemplo n.º 2
0
 public AdminController(IUserBus iUserBus, IEventBus iEventBus, ICategoryBus iCategoryBus)
 {
     _iuserBus     = iUserBus;
     _iEventBus    = iEventBus;
     _iCategoryBus = iCategoryBus;
 }
Ejemplo n.º 3
0
 public EventsController(IEventBus iEventBus, ICategoryBus iCategoryBus)
 {
     _iEventBus    = iEventBus;
     _iCategoryBus = iCategoryBus;
 }