Пример #1
0
 public bool UpdateBodyRow(string number, string action, string action_t, int user)
 {
     bool ok = false;
     try
     {
         InventoryBodyProvider pr = new InventoryBodyProvider();
         pr.UpdateAction(this.id, number, action, action_t, user);
         ok = true;
     }
     catch(Exception ex)
     {
     }
     return ok;
 }