Вторая лабораторная работа. Фикс названия переменной в IngredientStorage

This commit is contained in:
abazov73 2023-02-20 10:46:32 +04:00
parent 1875896d5e
commit 01e6d6c168

View File

@ -62,14 +62,14 @@ namespace ConfectioneryFileImplement.Implements
}
public IngredientViewModel? Update(IngredientBindingModel model)
{
var component = source.Ingredients.FirstOrDefault(x => x.Id == model.Id);
if (component == null)
var ingredient = source.Ingredients.FirstOrDefault(x => x.Id == model.Id);
if (ingredient == null)
{
return null;
}
component.Update(model);
ingredient.Update(model);
source.SaveIngredients();
return component.GetViewModel;
return ingredient.GetViewModel;
}
public IngredientViewModel? Delete(IngredientBindingModel model)
{