using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SewingDressesContracts.DI { public interface IDependencyContainer { void AddLogging(Action configure); void RegisterType(bool isSingle) where U : class, T where T : class; void RegisterType(bool isSingle) where T : class; T Resolve(); } }