Romanov E.V. SecuritySystem Lab_Work_1 #1
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "Lab_Work_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 +46,4 @@
public bool TakeOrderInWork(OrderBindingModel model)
{
CheckModel(model);
CheckModel(model, false);
@ -0,0 +47,4 @@
public bool TakeOrderInWork(OrderBindingModel model)
{
CheckModel(model);
if (!CheckStatus(model, OrderStatus.Выполняется)) return false;
CheckModel(model, false); должно вызываться в CheckStatus
@ -0,0 +53,4 @@
public bool DeliveryOrder(OrderBindingModel model)
{
CheckModel(model);
CheckModel(model, false);
@ -0,0 +60,4 @@
public bool FinishOrder(OrderBindingModel model)
{
CheckModel(model);
CheckModel(model, false);
@ -0,0 +17,4 @@
public int SecureId { get; private set; }
public string SecureName { get; private set; } = string.Empty;
Вычисляемое поле, не хранится в памяти
Pull request closed