public void GetConsultationsForRegisteredPatients_ShouldReturnAllConsultation()
        {
            var testPatients       = GetTestPatients();
            var patientsController = new PatientsController(testPatients);

            foreach (var patient in testPatients)
            {
                patientsController.RegisterPatient(patient);
            }

            var consulationController = new ConsultationsController();

            var resultResponse = consulationController.GetAllScheduledConsultations();

            Assert.AreEqual(resultResponse.StatusCode, HttpStatusCode.Created);
        }