public void ReturnAppointmentsFromGetScheduledAppointmentsForDate()
 {
     var repo = new ScheduleRepository(new SchedulingContext());
     Assert.IsNotNull(repo.GetScheduleForDate(testClinicId, testDateWithAppointments).Appointments);
 }
 public void NotReturnNullAppointmentsCollectionInScheduleTypeIfNoAppointmentsFound()
 {
     var repo = new ScheduleRepository(new SchedulingContext());
     Assert.IsNotNull(repo.GetScheduleForDate(testClinicId, testDateWithNoAppointments).Appointments);
 }