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