This commit is contained in:
Игорь Гордеев 2024-03-16 11:03:32 +04:00
parent 1d152b69d9
commit 372daa8c78
2 changed files with 1 additions and 2 deletions

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()
{