ПИбд-23 Волков Никита Андреевич Лабораторная работа №2 Усложненная #7

Closed
bocchanskyy wants to merge 6 commits from Lab2Hard into Lab1Hard
2 changed files with 8 additions and 0 deletions
Showing only changes of commit bb0bb04fc0 - Show all commits

View File

@ -2,6 +2,7 @@
using ComputersShopContracts.SearchModels;
using ComputersShopContracts.StoragesContracts;
using ComputersShopContracts.ViewModels;
using ComputersShopDataModels.Models;
using ComputersShopListImplement.Models;
using System;
using System.Collections.Generic;
@ -107,6 +108,11 @@ namespace ComputersShopListImplement.Implements
return newShop.GetViewModel;
}
public bool SellComputers(IComputerModel model, int quantity)
{
throw new NotImplementedException();
}
public ShopViewModel? Update(ShopBindingModel model)
{
foreach (var Shop in _source.Shops)

View File

@ -55,5 +55,7 @@ namespace ComputersShopListImplement.Models
DateOpening = DateOpening,
Computers = Computers
};
public int Capacity => throw new NotImplementedException();
}
}