Presnyakova V.V Lab_2_Hard #12

Closed
Victoria_Presnyakova wants to merge 26 commits from Lab_2_Hard into Lab_1_Hard
Showing only changes of commit 0732cc0ede - Show all commits

View File

@ -48,8 +48,7 @@ namespace JewelryStoreFileImplement.Implements
}
public ComponentViewModel? Insert(ComponentBindingModel model)
{
model.Id = _source.Components.Count > 0 ? _source.Components.Max(x =>
x.Id) + 1 : 1;
model.Id = _source.Components.Count > 0 ? _source.Components.Max(x =>x.Id) + 1 : 1;
var newComponent = Component.Create(model);
if (newComponent == null)
{
@ -62,8 +61,7 @@ x.Id) + 1 : 1;
public ComponentViewModel? Update(ComponentBindingModel model)
{
var component = _source.Components.FirstOrDefault(x => x.Id ==
model.Id);
var component = _source.Components.FirstOrDefault(x => x.Id ==model.Id);
if (component == null)
{
return null;