/// <summary>
 /// makes a change in 'raktmennyiseg' table, creates a new record
 /// </summary>
 /// <param name="row">the recors is needed to create</param>
 public void setNewRecProdQuantity(ProductStrippingPart row)
 {
     try
     {
         modelQuantities = new ProductsModelStrippingTable(dbci, parent);
         modelQuantities.createNewProdQuantityRecord(row, userId);
     }
     catch (Exception e)
     {
         errorHandle(e.Message);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// makes a change in 'raktmennyiseg' table, creates a new record
 /// </summary>
 /// <param name="row">the recors is needed to create</param>
 public void setNewRecProdQuantity(ProductStrippingPart row)
 {
     try
     {
         modelQuantities = new ProductsModelStrippingTable(dbci, parentMain);
         modelQuantities.createNewProdQuantityRecord(row, userId);
     }
     catch (ErrorServiceNewRecord e)
     {
         throw new ErrorServiceProd(e.Message);
     }
 }