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