WIP лаб3_сложная #5

Merged
AnnaLioness merged 5 commits from лаб2_сложная into лаб3_сложная 2024-03-24 21:03:20 +04:00
Showing only changes of commit 90535a3315 - Show all commits

View File

@ -83,15 +83,15 @@ namespace AbstractLawFirmFileImplement.Implements
public bool SellDocument(IDocumentModel model, int count)
{
var car = source.Documents.FirstOrDefault(x => x.Id == model.Id);
var document = source.Documents.FirstOrDefault(x => x.Id == model.Id);
if (car == null)
if (document == null)
{
return false;
}
var shopDocuments = source.Shops.SelectMany(shop => shop.ShopDocuments.Where(c => c.Value.Item1.Id == car.Id));
var shopDocuments = source.Shops.SelectMany(shop => shop.ShopDocuments.Where(c => c.Value.Item1.Id == document.Id));
int countStore = 0;
@ -105,7 +105,7 @@ namespace AbstractLawFirmFileImplement.Implements
{
var documents = shop.ShopDocuments;
foreach (var c in documents.Where(x => x.Value.Item1.Id == car.Id))
foreach (var c in documents.Where(x => x.Value.Item1.Id == document.Id))
{
int min = Math.Min(c.Value.Item2, count);
documents[c.Value.Item1.Id] = (c.Value.Item1, c.Value.Item2 - min);