public void TestAgendarConsultaSemErro()
        {
            PacienteModel paciente = new PacienteModel("Danilo", new DateTime(2000, 6, 18));
            ConsultaModel consulta = new ConsultaModel(paciente, new DateTime(2019, 10, 16, 12, 0, 0), new DateTime(2019, 10, 16, 16, 0, 0), "");

            _consultaService.AgendarConsulta(consulta);
        }