17 lines
212 B
C#
17 lines
212 B
C#
|
|
namespace zero.Debug.TestData
|
||
|
|
{
|
||
|
|
public class TestService : ITestService
|
||
|
|
{
|
||
|
|
public string GetName()
|
||
|
|
{
|
||
|
|
return "tobi";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public interface ITestService
|
||
|
|
{
|
||
|
|
string GetName();
|
||
|
|
}
|
||
|
|
}
|