Presnyakova V.V Lab_1 #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "Lab_1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Зачтено с понижением балла(ов)
@ -0,0 +37,4 @@
{
comboBoxJewel.DisplayMember = "Драгоценность";
comboBoxJewel.ValueMember = "Id";
comboBoxJewel.DataSource = list.Select(c => c.JewelName).ToList();
comboBoxJewel.DataSource = list;
@ -0,0 +33,4 @@
if (list != null)
{
DataGridView.DataSource = list;
Не скрывается коллекция комплектующих
@ -0,0 +41,4 @@
return true;
}
public bool DeliveryOrder(OrderBindingModel model)
Методы DeliveryOrder, FinishOrder и TakeOrderInWork имеют практически идентичную логику
@ -0,0 +13,4 @@
public class Order : IOrderModel // TODO Класс для модели сущности «Заказ» разработать самостоятельно
{
public int JewelId { get; private set; }
public string JewelName { get; private set; }
Вычисляемое поле, не хранится в памяти
@ -0,0 +50,4 @@
{
return;
}
JewelId = model.JewelId;
Не требуется обновлять все данные, только статус
Pull request closed