Ejemplo n.º 1
0
            public CoxSite AddCoxSite(int SiteId, string SiteCode)
            {
                CoxSite rowCoxSite = ((CoxSite)(this.NewRow()));

                rowCoxSite.ItemArray = new object[] {
                    SiteId,
                    SiteCode
                };
                this.Rows.Add(rowCoxSite);
                return(rowCoxSite);
            }
Ejemplo n.º 2
0
 public CoxSiteChangeEvent(CoxSite row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveCoxSite(CoxSite row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddCoxSite(CoxSite row)
 {
     this.Rows.Add(row);
 }