Esempio n. 1
0
            public ICOMSAddress AddICOMSAddress(
                long SiteID,
                long CompanyNbr,
                long DivisionNbr,
                long FranchiseID,
                long HouseNbr,
                string Number,
                string Fraction,
                string PreDirectional,
                string StreetName,
                string PostDirectional,
                string AddressLine1,
                string AddressLine2,
                string AddressLine3,
                string AddressLine4,
                string Apt,
                string Building,
                string City,
                string State,
                string Zip5,
                string Zip4,
                string DwellingType,
                bool HasBasicCable,
                bool HasDigitalCable,
                bool HasHSI,
                bool HasTelephony)
            {
                ICOMSAddress rowICOMSAddress = ((ICOMSAddress)(this.NewRow()));

                rowICOMSAddress.ItemArray = new object[] {
                    SiteID,
                    CompanyNbr,
                    DivisionNbr,
                    FranchiseID,
                    HouseNbr,
                    Number,
                    Fraction,
                    PreDirectional,
                    StreetName,
                    PostDirectional,
                    AddressLine1,
                    AddressLine2,
                    AddressLine3,
                    AddressLine4,
                    Apt,
                    Building,
                    City,
                    State,
                    Zip5,
                    Zip4,
                    DwellingType,
                    HasBasicCable,
                    HasDigitalCable,
                    HasHSI,
                    HasTelephony
                };
                this.Rows.Add(rowICOMSAddress);
                return(rowICOMSAddress);
            }
Esempio n. 2
0
 public void RemoveICOMSAddress(ICOMSAddress row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 3
0
 public void AddICOMSAddress(ICOMSAddress row)
 {
     this.Rows.Add(row);
 }
Esempio n. 4
0
 public ICOMSAddressChangeEvent(ICOMSAddress row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }