PIbd-23-Salin-O.A.-IceCream.../IceCreamShop/IceCreamShopContracts/DI/IDependencyContainer.cs
2024-05-12 13:29:49 +04:00

19 lines
446 B
C#

using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IceCreamShopContracts.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>();
}
}