SmallInjectorDemo/ServiceTwo.cs
Holger Boerchers 7326ff6684 Initial commit
2018-08-12 13:23:44 +02:00

22 lines
435 B
C#

using System;
namespace Playground
{
public class ServiceTwo : IServiceTwo
{
private readonly Guid _guid;
public ServiceTwo()
{
_guid = Guid.NewGuid();
Console.WriteLine(nameof(ServiceTwo) + ".ctor\t\tId: " + _guid);
}
public override string ToString() => nameof(ServiceTwo) + ".ToString()\tId: " + _guid;
}
public interface IServiceTwo
{
}
}