Example #1
0
 public inventoryDetailsRow AddinventoryDetailsRow(
             int ProductRef, 
             int ManufacturerRef, 
             decimal Price, 
             decimal Quantity, 
             string Series, 
             System.DateTime UseByDate, 
             decimal QuantityFact, 
             byte[] rowversion, 
             inventoryMasterRow parentinventoryMasterRowByFK_inventoryMaster_inventoryDetails, 
             string ManufacturerName, 
             string ProductName, 
             bool IsRecept, 
             bool IsOneRecept, 
             short MinDivisor, 
             bool IsNDS, 
             string FarmGroupName, 
             string PackingName, 
             string StorageConditionName, 
             string FarmGroupLevel2, 
             string UnitName, 
             string SubstanceName, 
             int OldKol, 
             string OldName, 
             string Note, 
             decimal SumFact, 
             decimal SumRem, 
             string AuthorLastModif, 
             System.DateTime DateLastModif, 
             string Diff) {
     inventoryDetailsRow rowinventoryDetailsRow = ((inventoryDetailsRow)(this.NewRow()));
     rowinventoryDetailsRow.ItemArray = new object[] {
             null,
             ProductRef,
             ManufacturerRef,
             Price,
             Quantity,
             Series,
             UseByDate,
             QuantityFact,
             rowversion,
             parentinventoryMasterRowByFK_inventoryMaster_inventoryDetails[0],
             ManufacturerName,
             ProductName,
             IsRecept,
             IsOneRecept,
             MinDivisor,
             IsNDS,
             FarmGroupName,
             PackingName,
             StorageConditionName,
             FarmGroupLevel2,
             UnitName,
             SubstanceName,
             OldKol,
             OldName,
             Note,
             SumFact,
             SumRem,
             AuthorLastModif,
             DateLastModif,
             Diff};
     this.Rows.Add(rowinventoryDetailsRow);
     return rowinventoryDetailsRow;
 }
Example #2
0
 public void AddinventoryMasterRow(inventoryMasterRow row) {
     this.Rows.Add(row);
 }
Example #3
0
 public void RemoveinventoryMasterRow(inventoryMasterRow row) {
     this.Rows.Remove(row);
 }
Example #4
0
 public inventoryMasterRowChangeEvent(inventoryMasterRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }