Added dependency injection

This commit is contained in:
MaddoScientisto 2024-10-14 22:18:03 +02:00
commit 39a9baf5c6
13 changed files with 59 additions and 581 deletions

View file

@ -0,0 +1,18 @@
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
{
}
}