Agliullov D. A. Lab Work 6 Base #17

Closed
d.agliullov wants to merge 34 commits from Lab6_Base into Lab5_Base
3 changed files with 8 additions and 7 deletions
Showing only changes of commit e5ea0c2960 - Show all commits

View File

@ -2,12 +2,6 @@
using ConfectioneryContracts.SearchModels;
using ConfectioneryContracts.StoragesContract;
using ConfectioneryContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryListImplement
{

View File

@ -62,7 +62,6 @@ namespace ConfectioneryListImplement.Models
public OrderViewModel GetViewModel => new()
{
PastryId = PastryId,
ClientFIO = DataListSingleton.GetInstance().Clients.FirstOrDefault(x => x.Id == ClientId)?.ClientFIO ?? string.Empty,
ClientId = ClientId,
ImplementerId = ImplementerId,
ImplementerFIO = DataListSingleton.GetInstance().Implementers.FirstOrDefault(x => x.Id == ImplementerId)?.ImplementerFIO ?? string.Empty,
Review

LINQ-выражения тут не применяются, нарушение стиля

LINQ-выражения тут не применяются, нарушение стиля

View File

@ -138,6 +138,14 @@ namespace ConfectioneryListImplement
break;
}
}
foreach (var client in _source.Clients)
{
if (client.Id == res.ClientId)
{
res.ClientFIO = client.ClientFIO;
break;
}
}
return res;
}
}