Catalog/imagecatalog/Services/TestService.cs

18 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ImageCatalog_2.Services
{
public interface ITestService
{
}
public class TestService : ITestService
{
}
}