public async Task Devo_Excluir_Candidato()
        {
            //ARRANGE
            var candidato = GetDefaultCandidato();

            var id = await _candidatoAppService.CreateOrUpdate(candidato);

            //ACT
            await _candidatoAppService.Delete(new DeleteInput()
            {
                Id = id
            });

            //ASSERT
            var candidatos = _candidatoAppService.GetAll(new BuscaCandidatoInput());

            candidatos.Count.ShouldBe(5);
        }