示例#1
0
        public orderRow AddorderRow(long orderid, decimal amount, System.DateTime datachange_createime, System.DateTime datachange_lasttime, string source)
        {
            orderRow roworderRow = ((orderRow)(this.NewRow()));

            object[] columnValuesArray = new object[] {
                orderid,
                amount,
                datachange_createime,
                datachange_lasttime,
                source
            };
            roworderRow.ItemArray = columnValuesArray;
            this.Rows.Add(roworderRow);
            return(roworderRow);
        }
示例#2
0
 public orderRowChangeEvent(orderRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveorderRow(orderRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddorderRow(orderRow row)
 {
     this.Rows.Add(row);
 }