Exemplo n.º 1
0
            public dtCreditLimitRow AdddtCreditLimitRow(string CustomerID, string CustomerName, string LimitAmount)
            {
                dtCreditLimitRow rowdtCreditLimitRow = ((dtCreditLimitRow)(this.NewRow()));

                rowdtCreditLimitRow.ItemArray = new object[] {
                    CustomerID,
                    CustomerName,
                    LimitAmount
                };
                this.Rows.Add(rowdtCreditLimitRow);
                return(rowdtCreditLimitRow);
            }
Exemplo n.º 2
0
 public dtCreditLimitRowChangeEvent(dtCreditLimitRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemovedtCreditLimitRow(dtCreditLimitRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AdddtCreditLimitRow(dtCreditLimitRow row)
 {
     this.Rows.Add(row);
 }