private void AddItemRegistry(Int32 id, Decimal qty, CommonUnit.InventoryType type, String comment)
 {
     try {
         _inventoryService.AddItemRegistry(id, qty, type, comment);
     }
     catch (Exception ex) {
         base.Log(ex);
     }
     finally {
     }
 }