/// <summary> /// Pega uma unidade de medida pelo código /// </summary> /// <param name="pMeasureID">Código da unidade</param> /// <param name="pCompanyDB">Banco da Empresa</param> /// <returns></returns> public static LengthUnit GetLengthMeasure(Int16 pMeasureID, string pCompanyDB) { pCompanyDB.CheckForArgumentNull("pCompanyDb"); LengthUnit lenght = new LengthUnit(pCompanyDB); if (!lenght.GetByKey(pMeasureID)) { throw new Exception( string.Format( DontFindText1Key, LengthMeasureName, pMeasureID)); } return(lenght); }