public void DeletePacienteRepositoryTest()
        {
            //Arrange
            IPacienteRepository repository = new PacienteRepository();

            //Action
            var deletedPaciente = repository.Delete(1);

            //Assert
            var persistedPaciente = _contextForTest.Pacientes.Find(1);
            Assert.IsNull(persistedPaciente);
        }