25 lines
669 B
C#
25 lines
669 B
C#
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>();
|
||
}
|
||
}
|