ISE-22. Aparyan L.M. Lab Work 01 base #1
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "LabWork01"
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 +8,4 @@
public class Order : IOrderModel
{
public int EngineId { get; private set; }
public string EngineName { get; private set; }
Название изделия - вычисляемое поле, в этой модели оно не хранится
@ -0,0 +33,4 @@
DateImplement = model.DateImplement
};
}
public void Update(OrderBindingModel? model)
Не требуется обновлять все данные, только статус и дату, если есть
@ -0,0 +1,78 @@
using Microsoft.Extensions.Logging;
Это уже было
Pull request closed