Esempio n. 1
0
            public LocationListTableRow AddLocationListTableRow(int LocationID, int CompanyID, string Number, string Type, string Description, string AddressLine1, string AddressLine2, string City, string StateOrProvince, string PostalCode, string Country, System.DateTime OpenTime, System.DateTime CloseTime, string Mnemonic)
            {
                LocationListTableRow rowLocationListTableRow = ((LocationListTableRow)(this.NewRow()));

                rowLocationListTableRow.ItemArray = new object[] {
                    LocationID,
                    CompanyID,
                    Number,
                    Type,
                    Description,
                    AddressLine1,
                    AddressLine2,
                    City,
                    StateOrProvince,
                    PostalCode,
                    Country,
                    OpenTime,
                    CloseTime,
                    Mnemonic
                };
                this.Rows.Add(rowLocationListTableRow);
                return(rowLocationListTableRow);
            }
Esempio n. 2
0
 public LocationListTableRowChangeEvent(LocationListTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveLocationListTableRow(LocationListTableRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddLocationListTableRow(LocationListTableRow row)
 {
     this.Rows.Add(row);
 }