ПИбд-23 Волков Никита Андреевич Лабораторная работа №2 Усложненная #7
@ -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)
|
||||
|
@ -55,5 +55,7 @@ namespace ComputersShopListImplement.Models
|
||||
DateOpening = DateOpening,
|
||||
Computers = Computers
|
||||
};
|
||||
|
||||
public int Capacity => throw new NotImplementedException();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user