示例#1
0
        public ReportingUnit GetReportingUnitByID(string reportingUnitID, string language)
        {
            if (string.IsNullOrEmpty(reportingUnitID))
            {
                throw new ArgumentException("El ID no puede ser <= 0.");
            }

            if (string.IsNullOrEmpty(language))
            {
                language = Artexacta.App.Utilities.LanguageUtilities.GetLanguageFromContext();
            }

            ReportingUnit theData = null;

            try
            {
                ReportingUnitDS.ReportingUnitsDataTable theTable = theAdapter.GetReportingUnitById(reportingUnitID, language);

                if (theTable != null && theTable.Rows.Count > 0)
                {
                    ReportingUnitDS.ReportingUnitsRow theRow = theTable[0];
                    theData = FillRecord(theRow);
                }
            }
            catch (Exception exc)
            {
                log.Error("Error en GetReportingUnitByID para reportingUnitID: " + reportingUnitID + " y language: " + language, exc);
                throw exc;
            }

            return(theData);
        }
示例#2
0
        private static ReportingUnit FillRecord(ReportingUnitDS.ReportingUnitsRow row)
        {
            ReportingUnit theNewRecord = new ReportingUnit(
                row.reportingUnitID,
                row.name);

            return(theNewRecord);
        }