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