ПИбд-23 Насыров Артур Газинурович Лабораторная работа №1 (Усложненная) #2

Closed
gaillard wants to merge 7 commits from lab1_hard into lab1
Showing only changes of commit 2385ba168a - Show all commits

View File

@ -8,6 +8,7 @@ using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using System;
using System.Drawing;
using FlowerShopBusinessLogic;
namespace ProjectFlowerShop
{
@ -40,6 +41,8 @@ namespace ProjectFlowerShop
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IFlowerLogic, FlowerLogic>();
services.AddTransient<IShopStorage, ShopStorage>();
services.AddTransient<IShopLogic, ShopLogic>();
services.AddTransient<MainForm>();
services.AddTransient<ComponentForm>();
services.AddTransient<FormComponents>();
@ -47,6 +50,9 @@ namespace ProjectFlowerShop
services.AddTransient<FormProduct>();
services.AddTransient<FormProductComponent>();
services.AddTransient<FormFlowers>();
services.AddTransient<ShopForm>();
services.AddTransient<ShopsForm>();
services.AddTransient<SupplyForm>();
}
}