public NovoMatchAppService(IMapper mapper, IMediatorHandler bus, INovoMatchRepository novoMatchRepository)
 {
     _mapper = mapper;
     _bus    = bus;
     _novoMatchRepository = novoMatchRepository;
 }
 public NovoMatchCommandHandler(IMediatorHandler bus, INotificationHandler <DomainNotification> notifications, INovoMatchRepository novoMatchRepository)
     : base(bus, notifications)
 {
     _bus = bus;
     _novoMatchRepository = novoMatchRepository;
 }