Ejemplo n.º 1
0
 public void RemoveCompanyTblRow(CompanyTblRow row) {
     this.Rows.Remove(row);
 }
Ejemplo n.º 2
0
 public LocationTblRow AddLocationTblRow(int LocID, CompanyTblRow parentCompanyTblRowByCompanyTbl_LocationTbl, string LocName, string Address, CountryTblRow parentCountryTblRowByCountryTblLocationTbl, string ExcelFile, string ATTNString, string CCString) {
     LocationTblRow rowLocationTblRow = ((LocationTblRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             LocID,
             null,
             LocName,
             Address,
             null,
             ExcelFile,
             ATTNString,
             CCString};
     if ((parentCompanyTblRowByCompanyTbl_LocationTbl != null)) {
         columnValuesArray[1] = parentCompanyTblRowByCompanyTbl_LocationTbl[0];
     }
     if ((parentCountryTblRowByCountryTblLocationTbl != null)) {
         columnValuesArray[4] = parentCountryTblRowByCountryTblLocationTbl[0];
     }
     rowLocationTblRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowLocationTblRow);
     return rowLocationTblRow;
 }
Ejemplo n.º 3
0
 public void AddCompanyTblRow(CompanyTblRow row) {
     this.Rows.Add(row);
 }
Ejemplo n.º 4
0
 public CompanyTblRowChangeEvent(CompanyTblRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }