Initial commit
This commit is contained in:
22
ServiceOne.cs
Normal file
22
ServiceOne.cs
Normal 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
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user