Add project files.

This commit is contained in:
Stone_Red
2021-12-17 20:43:17 +01:00
parent e1af7ef0b8
commit 070ec5d9fe
11 changed files with 397 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
namespace DynamicInjector_Test;
internal class SecondTestService
{
private readonly IFirstTestService firstTestService;
private int count = 0;
public SecondTestService(IFirstTestService firstTestService)
{
this.firstTestService = firstTestService;
}
public void Output()
{
firstTestService.Print();
Console.WriteLine(nameof(SecondTestService) + " | " + count++);
}
}