using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces; namespace Test.LightweightIocContainer.FactoryGenerator.TestClasses; public class B : IB { public B(C c) => C = c; public C C { get; } }