public void SuccessGetTherapiesForExamination()
        {
            PatientService.Service.PatientService patientService = SetupRepositoryAndService();
            IEnumerable <Therapy> therapies = patientService.GetTherapiesForExamination("1309998775018", -86);

            Assert.Empty(therapies);
        }
        public void SuccessGetExamination()
        {
            PatientService.Service.PatientService patientService = SetupRepositoryAndService();

            Assert.Throws <InvalidOperationException>(() => patientService.GetExamination("1309998775018", -86));
        }