PIbd22_NikiforovaMV_Automob.../AutomobilePlantContracts/DI/IDependencyContainer.cs

25 lines
669 B
C#
Raw Normal View History

2024-06-22 22:32:20 +04:00
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantContracts.DI
{
public interface IDependencyContainer
{
// Регистрация логгера
void AddLogging(Action<ILoggingBuilder> configure);
// Добавление зависимости
void RegisterType<T, U>(bool isSingle) where U : class, T where T : class;
// Добавление зависимости
void RegisterType<T>(bool isSingle) where T : class;
// Получение класса со всеми зависмостями
T Resolve<T>();
}
}