9 lines
167 B
C#
9 lines
167 B
C#
namespace PSCHelpdesk.Shared.Service;
|
|
|
|
public class TestService: ITestService
|
|
{
|
|
public void addItem()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |