public AgendaController(INotificationHandler <DomainNotification> notifications, IAgendaAppService agendaAppService, INovoMatchAppService novoMatchAppService, IUserAppService userAppService, INotaAppService notaAppService)
     : base(notifications)
 {
     _agendaAppService    = agendaAppService;
     _novoMatchAppService = novoMatchAppService;
     _userAppService      = userAppService;
     _notaAppService      = notaAppService;
 }
 public EventosController(INotificationHandler <DomainNotification> notifications, IAgendaAppService agendaAppService, INotaAppService notaAppService)
     : base(notifications)
 {
     _agendaAppService = agendaAppService;
     _notaAppService   = notaAppService;
 }