Esempio n. 1
0
        ///<summary>Inserts one Ucum into the database.  Provides option to use the existing priKey.  Doesn't use the cache.</summary>
        public static long InsertNoCache(Ucum ucum, bool useExistingPK)
        {
            bool   isRandomKeys = Prefs.GetBoolNoCache(PrefName.RandomPrimaryKeys);
            string command      = "INSERT INTO ucum (";

            if (!useExistingPK && isRandomKeys)
            {
                ucum.UcumNum = ReplicationServers.GetKeyNoCache("ucum", "UcumNum");
            }
            if (isRandomKeys || useExistingPK)
            {
                command += "UcumNum,";
            }
            command += "UcumCode,Description,IsInUse) VALUES(";
            if (isRandomKeys || useExistingPK)
            {
                command += POut.Long(ucum.UcumNum) + ",";
            }
            command +=
                "'" + POut.String(ucum.UcumCode) + "',"
                + "'" + POut.String(ucum.Description) + "',"
                + POut.Bool(ucum.IsInUse) + ")";
            if (useExistingPK || isRandomKeys)
            {
                Db.NonQ(command);
            }
            else
            {
                ucum.UcumNum = Db.NonQ(command, true, "UcumNum", "ucum");
            }
            return(ucum.UcumNum);
        }
Esempio n. 2
0
        ///<summary>Inserts one Ucum into the database.  Provides option to use the existing priKey.</summary>
        public static long Insert(Ucum ucum, bool useExistingPK)
        {
            if (!useExistingPK && PrefC.RandomKeys)
            {
                ucum.UcumNum = ReplicationServers.GetKey("ucum", "UcumNum");
            }
            string command = "INSERT INTO ucum (";

            if (useExistingPK || PrefC.RandomKeys)
            {
                command += "UcumNum,";
            }
            command += "UcumCode,Description,IsInUse) VALUES(";
            if (useExistingPK || PrefC.RandomKeys)
            {
                command += POut.Long(ucum.UcumNum) + ",";
            }
            command +=
                "'" + POut.String(ucum.UcumCode) + "',"
                + "'" + POut.String(ucum.Description) + "',"
                + POut.Bool(ucum.IsInUse) + ")";
            if (useExistingPK || PrefC.RandomKeys)
            {
                Db.NonQ(command);
            }
            else
            {
                ucum.UcumNum = Db.NonQ(command, true);
            }
            return(ucum.UcumNum);
        }
Esempio n. 3
0
 ///<summary>Inserts one Ucum into the database.  Returns the new priKey.</summary>
 public static long Insert(Ucum ucum)
 {
     if (DataConnection.DBtype == DatabaseType.Oracle)
     {
         ucum.UcumNum = DbHelper.GetNextOracleKey("ucum", "UcumNum");
         int loopcount = 0;
         while (loopcount < 100)
         {
             try {
                 return(Insert(ucum, true));
             }
             catch (Oracle.DataAccess.Client.OracleException ex) {
                 if (ex.Number == 1 && ex.Message.ToLower().Contains("unique constraint") && ex.Message.ToLower().Contains("violated"))
                 {
                     ucum.UcumNum++;
                     loopcount++;
                 }
                 else
                 {
                     throw ex;
                 }
             }
         }
         throw new ApplicationException("Insert failed.  Could not generate primary key.");
     }
     else
     {
         return(Insert(ucum, false));
     }
 }
Esempio n. 4
0
 private void gridMain_CellDoubleClick(object sender, ODGridClickEventArgs e)
 {
     if (IsSelectionMode)
     {
         SelectedUcum = (Ucum)gridMain.ListGridRows[e.Row].Tag;
         DialogResult = DialogResult.OK;
         return;
     }
 }
Esempio n. 5
0
        ///<summary>Updates one Ucum in the database.</summary>
        public static void Update(Ucum ucum)
        {
            string command = "UPDATE ucum SET "
                             + "UcumCode   = '" + POut.String(ucum.UcumCode) + "', "
                             + "Description= '" + POut.String(ucum.Description) + "', "
                             + "IsInUse    =  " + POut.Bool(ucum.IsInUse) + " "
                             + "WHERE UcumNum = " + POut.Long(ucum.UcumNum);

            Db.NonQ(command);
        }
Esempio n. 6
0
 private void butOK_Click(object sender, EventArgs e)
 {
     //not even visible unless IsSelectionMode
     if (gridMain.GetSelectedIndex() == -1)
     {
         MsgBox.Show(this, "Please select an item first.");
         return;
     }
     SelectedUcum = (Ucum)gridMain.ListGridRows[gridMain.GetSelectedIndex()].Tag;
     DialogResult = DialogResult.OK;
 }
Esempio n. 7
0
File: UcumCrud.cs Progetto: mnisl/OD
		///<summary>Converts a DataTable to a list of objects.</summary>
		public static List<Ucum> TableToList(DataTable table){
			List<Ucum> retVal=new List<Ucum>();
			Ucum ucum;
			for(int i=0;i<table.Rows.Count;i++) {
				ucum=new Ucum();
				ucum.UcumNum    = PIn.Long  (table.Rows[i]["UcumNum"].ToString());
				ucum.UcumCode   = PIn.String(table.Rows[i]["UcumCode"].ToString());
				ucum.Description= PIn.String(table.Rows[i]["Description"].ToString());
				ucum.IsInUse    = PIn.Bool  (table.Rows[i]["IsInUse"].ToString());
				retVal.Add(ucum);
			}
			return retVal;
		}
Esempio n. 8
0
 ///<summary>Inserts one Ucum into the database.  Returns the new priKey.  Doesn't use the cache.</summary>
 public static long InsertNoCache(Ucum ucum)
 {
     if (DataConnection.DBtype == DatabaseType.MySql)
     {
         return(InsertNoCache(ucum, false));
     }
     else
     {
         if (DataConnection.DBtype == DatabaseType.Oracle)
         {
             ucum.UcumNum = DbHelper.GetNextOracleKey("ucum", "UcumNum");                  //Cacheless method
         }
         return(InsertNoCache(ucum, true));
     }
 }
Esempio n. 9
0
        ///<summary>Converts a DataTable to a list of objects.</summary>
        public static List <Ucum> TableToList(DataTable table)
        {
            List <Ucum> retVal = new List <Ucum>();
            Ucum        ucum;

            for (int i = 0; i < table.Rows.Count; i++)
            {
                ucum             = new Ucum();
                ucum.UcumNum     = PIn.Long(table.Rows[i]["UcumNum"].ToString());
                ucum.UcumCode    = PIn.String(table.Rows[i]["UcumCode"].ToString());
                ucum.Description = PIn.String(table.Rows[i]["Description"].ToString());
                ucum.IsInUse     = PIn.Bool(table.Rows[i]["IsInUse"].ToString());
                retVal.Add(ucum);
            }
            return(retVal);
        }
Esempio n. 10
0
 ///<summary>Returns true if Update(Ucum,Ucum) would make changes to the database.
 ///Does not make any changes to the database and can be called before remoting role is checked.</summary>
 public static bool UpdateComparison(Ucum ucum, Ucum oldUcum)
 {
     if (ucum.UcumCode != oldUcum.UcumCode)
     {
         return(true);
     }
     if (ucum.Description != oldUcum.Description)
     {
         return(true);
     }
     if (ucum.IsInUse != oldUcum.IsInUse)
     {
         return(true);
     }
     return(false);
 }
Esempio n. 11
0
        ///<summary>Converts a DataTable to a list of objects.</summary>
        public static List <Ucum> TableToList(DataTable table)
        {
            List <Ucum> retVal = new List <Ucum>();
            Ucum        ucum;

            foreach (DataRow row in table.Rows)
            {
                ucum             = new Ucum();
                ucum.UcumNum     = PIn.Long(row["UcumNum"].ToString());
                ucum.UcumCode    = PIn.String(row["UcumCode"].ToString());
                ucum.Description = PIn.String(row["Description"].ToString());
                ucum.IsInUse     = PIn.Bool(row["IsInUse"].ToString());
                retVal.Add(ucum);
            }
            return(retVal);
        }
Esempio n. 12
0
        ///<summary>Updates one Ucum in the database.  Uses an old object to compare to, and only alters changed fields.  This prevents collisions and concurrency problems in heavily used tables.  Returns true if an update occurred.</summary>
        public static bool Update(Ucum ucum, Ucum oldUcum)
        {
            string command = "";

            if (ucum.UcumCode != oldUcum.UcumCode)
            {
                if (command != "")
                {
                    command += ",";
                }
                command += "UcumCode = '" + POut.String(ucum.UcumCode) + "'";
            }
            if (ucum.Description != oldUcum.Description)
            {
                if (command != "")
                {
                    command += ",";
                }
                command += "Description = '" + POut.String(ucum.Description) + "'";
            }
            if (ucum.IsInUse != oldUcum.IsInUse)
            {
                if (command != "")
                {
                    command += ",";
                }
                command += "IsInUse = " + POut.Bool(ucum.IsInUse) + "";
            }
            if (command == "")
            {
                return(false);
            }
            command = "UPDATE ucum SET " + command
                      + " WHERE UcumNum = " + POut.Long(ucum.UcumNum);
            Db.NonQ(command);
            return(true);
        }
Esempio n. 13
0
File: UcumCrud.cs Progetto: mnisl/OD
		///<summary>Inserts one Ucum into the database.  Provides option to use the existing priKey.</summary>
		public static long Insert(Ucum ucum,bool useExistingPK){
			if(!useExistingPK && PrefC.RandomKeys) {
				ucum.UcumNum=ReplicationServers.GetKey("ucum","UcumNum");
			}
			string command="INSERT INTO ucum (";
			if(useExistingPK || PrefC.RandomKeys) {
				command+="UcumNum,";
			}
			command+="UcumCode,Description,IsInUse) VALUES(";
			if(useExistingPK || PrefC.RandomKeys) {
				command+=POut.Long(ucum.UcumNum)+",";
			}
			command+=
				 "'"+POut.String(ucum.UcumCode)+"',"
				+"'"+POut.String(ucum.Description)+"',"
				+    POut.Bool  (ucum.IsInUse)+")";
			if(useExistingPK || PrefC.RandomKeys) {
				Db.NonQ(command);
			}
			else {
				ucum.UcumNum=Db.NonQ(command,true);
			}
			return ucum.UcumNum;
		}
Esempio n. 14
0
File: UcumCrud.cs Progetto: mnisl/OD
		///<summary>Inserts one Ucum into the database.  Returns the new priKey.</summary>
		public static long Insert(Ucum ucum){
			if(DataConnection.DBtype==DatabaseType.Oracle) {
				ucum.UcumNum=DbHelper.GetNextOracleKey("ucum","UcumNum");
				int loopcount=0;
				while(loopcount<100){
					try {
						return Insert(ucum,true);
					}
					catch(Oracle.DataAccess.Client.OracleException ex){
						if(ex.Number==1 && ex.Message.ToLower().Contains("unique constraint") && ex.Message.ToLower().Contains("violated")){
							ucum.UcumNum++;
							loopcount++;
						}
						else{
							throw ex;
						}
					}
				}
				throw new ApplicationException("Insert failed.  Could not generate primary key.");
			}
			else {
				return Insert(ucum,false);
			}
		}
Esempio n. 15
0
File: UcumCrud.cs Progetto: mnisl/OD
		///<summary>Updates one Ucum in the database.  Uses an old object to compare to, and only alters changed fields.  This prevents collisions and concurrency problems in heavily used tables.  Returns true if an update occurred.</summary>
		public static bool Update(Ucum ucum,Ucum oldUcum){
			string command="";
			if(ucum.UcumCode != oldUcum.UcumCode) {
				if(command!=""){ command+=",";}
				command+="UcumCode = '"+POut.String(ucum.UcumCode)+"'";
			}
			if(ucum.Description != oldUcum.Description) {
				if(command!=""){ command+=",";}
				command+="Description = '"+POut.String(ucum.Description)+"'";
			}
			if(ucum.IsInUse != oldUcum.IsInUse) {
				if(command!=""){ command+=",";}
				command+="IsInUse = "+POut.Bool(ucum.IsInUse)+"";
			}
			if(command==""){
				return false;
			}
			command="UPDATE ucum SET "+command
				+" WHERE UcumNum = "+POut.Long(ucum.UcumNum);
			Db.NonQ(command);
			return true;
		}
Esempio n. 16
0
File: UcumCrud.cs Progetto: mnisl/OD
		///<summary>Updates one Ucum in the database.</summary>
		public static void Update(Ucum ucum){
			string command="UPDATE ucum SET "
				+"UcumCode   = '"+POut.String(ucum.UcumCode)+"', "
				+"Description= '"+POut.String(ucum.Description)+"', "
				+"IsInUse    =  "+POut.Bool  (ucum.IsInUse)+" "
				+"WHERE UcumNum = "+POut.Long(ucum.UcumNum);
			Db.NonQ(command);
		}
Esempio n. 17
0
 ///<summary>Inserts one Ucum into the database.  Returns the new priKey.</summary>
 public static long Insert(Ucum ucum)
 {
     return(Insert(ucum, false));
 }
Esempio n. 18
0
        ///<summary>Observation/result segment.  Used to transmit observations related to the patient and visit.  Guide page 64.</summary>
        private void OBX()
        {
            List <EhrAptObs> listObservations = EhrAptObses.Refresh(_appt.AptNum);

            for (int i = 0; i < listObservations.Count; i++)
            {
                EhrAptObs obs = listObservations[i];
                _seg = new SegmentHL7(SegmentNameHL7.OBX);
                _seg.SetField(0, "OBX");
                _seg.SetField(1, (i + 1).ToString());             //OBX-1 Set ID - OBX.  Required (length 1..4).  Must start at 1 and increment.
                //OBX-2 Value Type.  Required (length 1..3).  Cardinality [1..1].  Identifies the structure of data in observation value OBX-5.  Values allowed: TS=Time Stamp (Date and/or Time),TX=Text,NM=Numeric,CWE=Coded with exceptions,XAD=Address.
                if (obs.ValType == EhrAptObsType.Coded)
                {
                    _seg.SetField(2, "CWE");
                }
                else if (obs.ValType == EhrAptObsType.DateAndTime)
                {
                    _seg.SetField(2, "TS");
                }
                else if (obs.ValType == EhrAptObsType.Numeric)
                {
                    _seg.SetField(2, "NM");
                }
                else                  //obs.ValType==EhrAptObsType.Text
                {
                    _seg.SetField(2, "TX");
                }
                //OBX-3 Observation Identifier.  Required (length up to 478).  Cardinality [1..1].  Value set is HL7 table named "Observation Identifier".  Type CE.  We use LOINC codes because the testing tool used LOINC codes and so do vaccines.
                string obsIdCode         = "";
                string obsIdCodeDescript = "";
                string obsIdCodeSystem   = "LN";
                if (obs.IdentifyingCode == EhrAptObsIdentifier.BodyTemp)
                {
                    obsIdCode         = "11289-6";
                    obsIdCodeDescript = "Body temperature:Temp:Enctrfrst:Patient:Qn:";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.CheifComplaint)
                {
                    obsIdCode         = "8661-1";
                    obsIdCodeDescript = "Chief complaint:Find:Pt:Patient:Nom:Reported";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.DateIllnessOrInjury)
                {
                    obsIdCode         = "11368-8";
                    obsIdCodeDescript = "Illness or injury onset date and time:TmStp:Pt:Patient:Qn:";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.OxygenSaturation)
                {
                    obsIdCode         = "59408-5";
                    obsIdCodeDescript = "Oxygen saturation:MFr:Pt:BldA:Qn:Pulse oximetry";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.PatientAge)
                {
                    obsIdCode         = "21612-7";
                    obsIdCodeDescript = "Age Time Patient Reported";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.PrelimDiag)
                {
                    obsIdCode         = "44833-2";
                    obsIdCodeDescript = "Diagnosis.preliminary:Imp:Pt:Patient:Nom:";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.TreatFacilityID)
                {
                    obsIdCode         = "SS001";
                    obsIdCodeDescript = "Treating Facility Identifier";
                    obsIdCodeSystem   = "PHINQUESTION";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.TreatFacilityLocation)
                {
                    obsIdCode         = "SS002";
                    obsIdCodeDescript = "Treating Facility Location";
                    obsIdCodeSystem   = "PHINQUESTION";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.TriageNote)
                {
                    obsIdCode         = "54094-8";
                    obsIdCodeDescript = "Triage note:Find:Pt:Emergency department:Doc:";
                }
                else if (obs.IdentifyingCode == EhrAptObsIdentifier.VisitType)
                {
                    obsIdCode         = "SS003";
                    obsIdCodeDescript = "Facility / Visit Type";
                    obsIdCodeSystem   = "PHINQUESTION";
                }
                WriteCE(3, obsIdCode, obsIdCodeDescript, obsIdCodeSystem);
                //OBX-4 Observation Sub-ID.  No longer used.
                //OBX-5 Observation Value.  Required if known (length 1..99999).  Value must match type in OBX-2.
                if (obs.ValType == EhrAptObsType.Address)
                {
                    WriteXAD(5, _sendingFacilityAddress1, _sendingFacilityAddress2, _sendingFacilityCity, _sendingFacilityState, _sendingFacilityZip);
                }
                else if (obs.ValType == EhrAptObsType.Coded)
                {
                    string codeDescript     = "";
                    string codeSystemAbbrev = "";
                    if (obs.ValCodeSystem.Trim().ToUpper() == "LOINC")
                    {
                        Loinc loincVal = Loincs.GetByCode(obs.ValReported);
                        codeDescript     = loincVal.NameShort;
                        codeSystemAbbrev = "LN";
                    }
                    else if (obs.ValCodeSystem.Trim().ToUpper() == "SNOMEDCT")
                    {
                        Snomed snomedVal = Snomeds.GetByCode(obs.ValReported);
                        codeDescript     = snomedVal.Description;
                        codeSystemAbbrev = "SCT";
                    }
                    else if (obs.ValCodeSystem.Trim().ToUpper() == "ICD9")
                    {
                        ICD9 icd9Val = ICD9s.GetByCode(obs.ValReported);
                        codeDescript     = icd9Val.Description;
                        codeSystemAbbrev = "I9";
                    }
                    else if (obs.ValCodeSystem.Trim().ToUpper() == "ICD10")
                    {
                        Icd10 icd10Val = Icd10s.GetByCode(obs.ValReported);
                        codeDescript     = icd10Val.Description;
                        codeSystemAbbrev = "I10";
                    }
                    WriteCE(5, obs.ValReported.Trim(), codeDescript, codeSystemAbbrev);
                }
                else if (obs.ValType == EhrAptObsType.DateAndTime)
                {
                    DateTime dateVal    = DateTime.Parse(obs.ValReported.Trim());
                    string   strDateOut = dateVal.ToString("yyyyMMdd");
                    //The testing tool threw errors when there were trailing zeros, even though technically valid.
                    if (dateVal.Second > 0)
                    {
                        strDateOut += dateVal.ToString("HHmmss");
                    }
                    else if (dateVal.Minute > 0)
                    {
                        strDateOut += dateVal.ToString("HHmm");
                    }
                    else if (dateVal.Hour > 0)
                    {
                        strDateOut += dateVal.ToString("HH");
                    }
                    _seg.SetField(5, strDateOut);
                }
                else if (obs.ValType == EhrAptObsType.Numeric)
                {
                    _seg.SetField(5, obs.ValReported.Trim());
                }
                else                   //obs.ValType==EhrAptObsType.Text
                {
                    _seg.SetField(5, obs.ValReported);
                }
                //OBX-6 Units.  Required if OBX-2 is NM=Numeric.  Cardinality [0..1].  Type CE.  The guide suggests value sets: Pulse Oximetry Unit, Temperature Unit, or Age Unit.  However, the testing tool used UCUM, so we will use UCUM.
                if (obs.ValType == EhrAptObsType.Numeric)
                {
                    if (String.IsNullOrEmpty(obs.UcumCode))                      //If units are required but known, we must send a null flavor.
                    {
                        WriteCE(6, "UNK", "", "NULLFL");
                    }
                    else
                    {
                        Ucum ucum = Ucums.GetByCode(obs.UcumCode);
                        WriteCE(6, ucum.UcumCode, ucum.Description, "UCUM");
                    }
                }
                //OBX-7 References Range.  No longer used.
                //OBX-8 Abnormal Flags.  No longer used.
                //OBX-9 Probability.  No longer used.
                //OBX-10 Nature of Abnormal Test.  No longer used.
                _seg.SetField(11, "F");               //OBX-11 Observation Result Status.  Required (length 1..1).  Expected value is "F".
                //OBX-12 Effective Date of Reference Range.  No longer used.
                //OBX-13 User Defined Access Checks.  No longer used.
                //OBX-14 Date/Time of the Observation.  Optional.
                //OBX-15 Producer's ID.  No longer used.
                //OBX-16 Responsible Observer.  No longer used.
                //OBX-17 Observation Method.  No longer used.
                //OBX-18 Equipment Instance Identifier.  No longer used.
                //OBX-19 Date/Time of the Analysis.  No longer used.
                _msg.Segments.Add(_seg);
            }
        }
Esempio n. 19
0
        public static string Validate(Appointment appt)
        {
            StringBuilder sb           = new StringBuilder();
            Provider      provFacility = Providers.GetProv(PrefC.GetInt(PrefName.PracticeDefaultProv));

            if (!Regex.IsMatch(provFacility.NationalProvID, "^(80840)?[0-9]{10}$"))
            {
                WriteError(sb, "Invalid NPI for provider '" + provFacility.Abbr + "'");
            }
            if (PrefC.HasClinicsEnabled && appt.ClinicNum != 0)           //Using clinics and a clinic is assigned.
            {
                Clinic clinic = Clinics.GetClinic(appt.ClinicNum);
                if (clinic.Description == "")
                {
                    WriteError(sb, "Missing clinic description for clinic attached to appointment.");
                }
            }
            else              //Not using clinics for this patient
            {
                if (PrefC.GetString(PrefName.PracticeTitle) == "")
                {
                    WriteError(sb, "Missing practice title.");
                }
            }
            Patient pat = Patients.GetPat(appt.PatNum);

            if (pat.PatStatus == PatientStatus.Deceased && pat.DateTimeDeceased.Year < 1880)
            {
                WriteError(sb, "Missing date time deceased.");
            }
            List <EhrAptObs> listObservations = EhrAptObses.Refresh(appt.AptNum);

            if (listObservations.Count == 0)
            {
                WriteError(sb, "Missing observation.");
            }
            for (int i = 0; i < listObservations.Count; i++)
            {
                EhrAptObs obs = listObservations[i];
                if (obs.ValType == EhrAptObsType.Coded)
                {
                    if (obs.ValCodeSystem.Trim().ToUpper() == "LOINC")
                    {
                        Loinc loincVal = Loincs.GetByCode(obs.ValReported);
                        if (loincVal == null)
                        {
                            WriteError(sb, "Loinc code not found '" + loincVal.LoincCode + "'.  Please add by going to Setup | Chart | EHR.");
                        }
                    }
                    else if (obs.ValCodeSystem.Trim().ToUpper() == "SNOMEDCT")
                    {
                        Snomed snomedVal = Snomeds.GetByCode(obs.ValReported);
                        if (snomedVal == null)
                        {
                            WriteError(sb, "Snomed code not found '" + snomedVal.SnomedCode + "'.  Please add by going to Setup | Chart | EHR.");
                        }
                    }
                    else if (obs.ValCodeSystem.Trim().ToUpper() == "ICD9")
                    {
                        ICD9 icd9Val = ICD9s.GetByCode(obs.ValReported);
                        if (icd9Val == null)
                        {
                            WriteError(sb, "ICD9 code not found '" + icd9Val.ICD9Code + "'.  Please add by going to Setup | Chart | EHR.");
                        }
                    }
                    else if (obs.ValCodeSystem.Trim().ToUpper() == "ICD10")
                    {
                        Icd10 icd10Val = Icd10s.GetByCode(obs.ValReported);
                        if (icd10Val == null)
                        {
                            WriteError(sb, "ICD10 code not found '" + icd10Val.Icd10Code + "'.  Please add by going to Setup | Chart | EHR.");
                        }
                    }
                }
                else if (obs.ValType == EhrAptObsType.Numeric && obs.UcumCode != "")             //We only validate the ucum code if it will be sent out.  Blank units allowed.
                {
                    Ucum ucum = Ucums.GetByCode(obs.UcumCode);
                    if (ucum == null)
                    {
                        WriteError(sb, "Invalid unit code '" + obs.UcumCode + "' for observation (must be UCUM code).");
                    }
                }
            }
            return(sb.ToString());
        }
Esempio n. 20
0
 ///<summary>Inserts one Ucum into the database.  Returns the new priKey.  Doesn't use the cache.</summary>
 public static long InsertNoCache(Ucum ucum)
 {
     return(InsertNoCache(ucum, false));
 }