public PurchaseRowChangeEvent(PurchaseRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemovePurchaseRow(PurchaseRow row) {
     this.Rows.Remove(row);
 }
 public FakeReceiptRow(PurchaseRow rowWithImportBasicTax1, IList <FakeTax> list)
 {
     PurchaseInfo = rowWithImportBasicTax1;
     _taxList     = list;
 }
 public void AddPurchaseRow(PurchaseRow row) {
     this.Rows.Add(row);
 }
 public FakeReceiptRow(PurchaseRow rowWithNoTax)
 {
     PurchaseInfo = rowWithNoTax;
     _taxList     = new List <FakeTax>();
 }