private void UpdateProductExecute()
        {
            UpdateProductAmmountView update = new UpdateProductAmmountView(product);

            update.Show();
            Products = productModel.GetAllProducts();
        }
 public UpdateProductAmmountViewModel(UpdateProductAmmountView view, Product p)
 {
     upav    = view;
     Product = p;
 }