Esempio n. 1
0
            public PublishCompanyRow AddPublishCompanyRow(string PublishName, string PublishAddress, string PublishPhoneNo, string PbulishEmail)
            {
                PublishCompanyRow rowPublishCompanyRow = ((PublishCompanyRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    PublishName,
                    PublishAddress,
                    PublishPhoneNo,
                    PbulishEmail
                };
                rowPublishCompanyRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowPublishCompanyRow);
                return(rowPublishCompanyRow);
            }
Esempio n. 2
0
 public PublishCompanyRowChangeEvent(PublishCompanyRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemovePublishCompanyRow(PublishCompanyRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddPublishCompanyRow(PublishCompanyRow row)
 {
     this.Rows.Add(row);
 }