ISbd-21 Gordeev I.V. LabWork_01 Hard #2

Closed
Igor_Gordeev wants to merge 2 commits from lab_01_Hard into Lab_01
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 372daa8c78 - Show all commits

View File

@ -19,7 +19,7 @@ namespace SushiBarView
InitializeComponent();
_logger = logger;
_logic = logic;
_shopListSushi = new();
_shopListSushi = new Dictionary<int, (ISushiModel, int)>();
}
private void FormShop_Load(object sender, EventArgs e)

View File

@ -39,7 +39,6 @@ namespace SushiBarListImplement.Models
ShopName = model.ShopName;
Address = model.Address;
DateOpening = model.DateOpening;
ShopSushi = model.ShopSushi;
}
public ShopViewModel GetViewModel => new()
{