Initial commit

This commit is contained in:
Holger Boerchers
2018-08-12 13:23:44 +02:00
parent 59307bf28e
commit 7326ff6684
10 changed files with 253 additions and 0 deletions

22
ServiceOne.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
namespace Playground
{
public class ServiceOne : IServiceOne
{
private readonly Guid _guid;
public ServiceOne()
{
_guid = Guid.NewGuid();
Console.WriteLine(nameof(ServiceOne) + ".ctor\t\tId: " + _guid);
}
public override string ToString() => nameof(ServiceOne) + ".ToString()\tId: " + _guid;
}
public interface IServiceOne
{
}
}