Exemplo n.º 1
0
 public void GetCart()
 {
     if (ShopingCart.GetCart((int)(cbxListClient.SelectedValue)).Count > 0)
     {
         dgvItensCart.DataSource = ShopingCart.GetCart((int)(cbxListClient.SelectedValue));
     }
     else
     {
         MessageBox.Show("VAZIA");
     }
 }