示例#1
0
        //select all patients that have scanLocation scans
        public Tuple <LinkedList <int>, LinkedList <DateTime> > getScanLocationTimestamps()
        {
            Tuple <LinkedList <int>, LinkedList <DateTime> > patients = null;
            Selection sr = new Selection(con);

            patients = sr.locTimestamps();

            return(patients);
        }
示例#2
0
        //select all patients that have scanLocation scans
        public Tuple<LinkedList<int>, LinkedList<DateTime>> getScanLocationTimestamps()
        {
            Tuple<LinkedList<int>, LinkedList<DateTime>> patients = null;
            Selection sr = new Selection(con);

            patients = sr.locTimestamps();

            return patients;
        }