Merge branch 'Lab2_Base' into Lab2_Hard
This commit is contained in:
commit
cf2fd40f87
@ -63,14 +63,14 @@ namespace ConfectioneryFileImplement
|
||||
|
||||
public OrderViewModel? Update(OrderBindingModel model)
|
||||
{
|
||||
var pastry = _source.Orders.FirstOrDefault(x => x.Id == model.Id);
|
||||
if (pastry == null)
|
||||
var order = _source.Orders.FirstOrDefault(x => x.Id == model.Id);
|
||||
if (order == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
pastry.Update(model);
|
||||
order.Update(model);
|
||||
_source.SaveOrders();
|
||||
return pastry.GetViewModel;
|
||||
return order.GetViewModel;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user