Ejemplo n.º 1
0
        private Visit BuildCheckedInVisit(Staff staff, DateTimeRange appointmentDateTimeRange, ClinicalCase clinicalCase, Problem problem = null)
        {
            Visit visit = BuildScheduledVisit(staff, appointmentDateTimeRange, clinicalCase, problem);

            visit.CheckIn(new DateTime(2002, 3, 28, 9, 0, 0));

            Session.SaveOrUpdate(visit);

            return(visit);
        }