Beispiel #1
0
 public void AddRefundApplicationRow(RefundApplicationRow row) {
     this.Rows.Add(row);
 }
Beispiel #2
0
 public RefundApplicationRowChangeEvent(RefundApplicationRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public RefundStampDetailsRow AddRefundStampDetailsRow(RefundApplicationRow parentRefundApplicationRowByFK_RefundStampDetails_RefundApplication, System.Guid RevenueStampId, string ReturnedQty, string StampNumber) {
     RefundStampDetailsRow rowRefundStampDetailsRow = ((RefundStampDetailsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             RevenueStampId,
             ReturnedQty,
             StampNumber};
     if ((parentRefundApplicationRowByFK_RefundStampDetails_RefundApplication != null)) {
         columnValuesArray[0] = parentRefundApplicationRowByFK_RefundStampDetails_RefundApplication[0];
     }
     rowRefundStampDetailsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowRefundStampDetailsRow);
     return rowRefundStampDetailsRow;
 }
Beispiel #4
0
 public RefundActsApplicableRow AddRefundActsApplicableRow(RefundApplicationRow parentRefundApplicationRowByFK_RefundActApplicable_RefundApplication, System.Guid ActId, bool Checked, string Remarks) {
     RefundActsApplicableRow rowRefundActsApplicableRow = ((RefundActsApplicableRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             ActId,
             Checked,
             Remarks};
     if ((parentRefundApplicationRowByFK_RefundActApplicable_RefundApplication != null)) {
         columnValuesArray[0] = parentRefundApplicationRowByFK_RefundActApplicable_RefundApplication[0];
     }
     rowRefundActsApplicableRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowRefundActsApplicableRow);
     return rowRefundActsApplicableRow;
 }
Beispiel #5
0
 public void RemoveRefundApplicationRow(RefundApplicationRow row) {
     this.Rows.Remove(row);
 }