private bool IsSelectionsDone() { object obj = listBoxClothesTypes.SelectedItem; if (obj == null) { MessageBox.Show("Выберите тип одежды!"); return(false); } string clothesType = obj.ToString(); obj = listBoxClothesSize.SelectedItem; if (obj == null) { MessageBox.Show("Выберите размер одежды!"); return(false); } string clothesSize = obj.ToString(); obj = comboBoxClothesQuantity.SelectedItem; if (obj == null) { MessageBox.Show("Выберите количество!"); return(false); } int clothesQuantity = int.Parse(obj.ToString()); OrdersManager.CurrentOrder.ClothesSize = clothesSize; OrdersManager.CurrentOrder.ClothesType = clothesType; OrdersManager.CurrentOrder.Quantity = clothesQuantity; var currentOrder = OrdersManager.CurrentOrder; if (OrdersManager.CheckDuplocateOrders()) { MessageBox.Show("Вы уже добавили данный продукт"); return(false); } return(true); }