public EventosController(IEventoServices eventoServices,
                          IDomainNotificationHandler <DomainNotification> notifications,
                          IUser user,
                          IBus bus)
     : base(notifications, user, bus)
 {
     _eventoServices = eventoServices;
 }
Esempio n. 2
0
 public EventoController(
     IUser user,
     IEventoServices eventoServices
     )
     : base(user)
 {
     _user           = user;
     _eventoServices = eventoServices;
 }