PIbd-21 Potapov N.S. LabWork01 Hard #5

Closed
ns.potapov wants to merge 20 commits from LabWorkHard01 into LabWork01
Showing only changes of commit 138b58383e - Show all commits

View File

@ -39,6 +39,8 @@ namespace SecuritySystemView
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<ISecureLogic, SecureLogic>();
services.AddTransient<IShopStorage, ShopStorage>();
services.AddTransient<IShopLogic, ShopLogic>();
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
@ -46,6 +48,9 @@ namespace SecuritySystemView
services.AddTransient<FormSecure>();
services.AddTransient<FormSecureComponent>();
services.AddTransient<FormSecures>();
services.AddTransient<FormShop>();
services.AddTransient<FormShops>();
services.AddTransient<FormShopSupply>();
}
}
}