public async Task <string> Post([FromBody] Paciente paciente)
 {
     return(await pacienteRepository.CadastrarAsync(paciente));
 }