/// <summary>
 /// makes a change in 'raktmennyiseg' table, undelet a record
 /// this nullifies the value of who-deleted in 'termek_metorles' field
 /// </summary>
 /// <param name="index">the record index</param>
 public void setUndeleteRecProdQuantity(string index, string stripping)
 {
     try
     {
         modelQuantities = new ProductsModelStrippingTable(dbci, parent);
         modelQuantities.renewProdQuantityRecord(index, stripping, userId);
     }
     catch (Exception e)
     {
         errorHandle(e.Message);
     }
 }
示例#2
0
 /// <summary>
 /// makes a change in 'raktmennyiseg' table, undelet a record
 /// this nullifies the value of who-deleted in 'termek_metorles' field
 /// </summary>
 /// <param name="index">the record index</param>
 public void setUndeleteRecProdQuantity(string index, string stripping)
 {
     try
     {
         modelQuantities = new ProductsModelStrippingTable(dbci, parentMain);
         modelQuantities.renewProdQuantityRecord(index, stripping, userId);
     }
     catch (ErrorServiceRenewRecord e)
     {
         throw new ErrorServiceProd(e.Message);
     }
 }