@ -1,9 +1,7 @@
using JetBrains.Annotations;
using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces;
using Test.LightweightIocContainer.FactoryGenerator.TestClasses.Interfaces;
namespace Test.LightweightIocContainer.FactoryGenerator.TestClasses.Factories;
[UsedImplicitly]
public interface IAFactory
{
IA Create();
@ -1,11 +1,9 @@
namespace Test.LightweightIocContainer.FactoryGenerator.TestClasses;
public class TestByte : IDefaultTest
private readonly byte _id;
public TestByte(byte id) => _id = id;