[성현모] 패키지설치, DI 패턴 적용.

This commit is contained in:
SHM
2026-03-09 11:02:41 +09:00
parent 0b476f4072
commit 2c2c94f6fa
13 changed files with 88 additions and 31 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace eCIAv2.WindowsApp.Services
{
public class ConfigService
{
public string LoadConfig()
{
return "loadConfig";
}
}
}