using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces; namespace Test.LightweightIocContainer.FactoryGenerator.TestClasses.Factories; public interface IBFactory { IB Create(); IB Create(C c); }