Presnyakova V.V Lab_1 #1

Closed
Victoria_Presnyakova wants to merge 21 commits from Lab_1 into main
No description provided.
Victoria_Presnyakova added 21 commits 2023-02-10 20:44:44 +04:00
eegov approved these changes 2023-02-11 21:47:33 +04:00
eegov left a comment
Collaborator

Зачтено с понижением балла(ов)

Зачтено с понижением балла(ов)
@ -0,0 +37,4 @@
{
comboBoxJewel.DisplayMember = "Драгоценность";
comboBoxJewel.ValueMember = "Id";
comboBoxJewel.DataSource = list.Select(c => c.JewelName).ToList();
Collaborator

comboBoxJewel.DataSource = list;

comboBoxJewel.DataSource = list;
@ -0,0 +33,4 @@
if (list != null)
{
DataGridView.DataSource = list;
Collaborator

Не скрывается коллекция комплектующих

Не скрывается коллекция комплектующих
@ -0,0 +41,4 @@
return true;
}
public bool DeliveryOrder(OrderBindingModel model)
Collaborator

Методы DeliveryOrder, FinishOrder и TakeOrderInWork имеют практически идентичную логику

Методы DeliveryOrder, FinishOrder и TakeOrderInWork имеют практически идентичную логику
@ -0,0 +13,4 @@
public class Order : IOrderModel // TODO Класс для модели сущности «Заказ» разработать самостоятельно
{
public int JewelId { get; private set; }
public string JewelName { get; private set; }
Collaborator

Вычисляемое поле, не хранится в памяти

Вычисляемое поле, не хранится в памяти
@ -0,0 +50,4 @@
{
return;
}
JewelId = model.JewelId;
Collaborator

Не требуется обновлять все данные, только статус

Не требуется обновлять все данные, только статус
eegov closed this pull request 2023-02-11 21:47:47 +04:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Victoria_Presnyakova/Pibd-22_Presnyakova.V.V_JewelryStore#1
No description provided.