PARR.EsppTemplateSyncWorker

This commit is contained in:
Mikhail Trubnikov
2023-08-25 15:32:06 +10:00
parent 17feefce02
commit e284b3ca19
17 changed files with 363 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
namespace PARR.EsppTemplateSync.Services
{
internal interface IParserService
{
Task<bool> ParseAsync(string path);
}
}

View File

@@ -0,0 +1,15 @@
namespace PARR.EsppTemplateSync.Services
{
internal class ParserService : IParserService
{
public async Task<bool> ParseAsync(string path)
{
//TODO:
bool isSuccess = true;
return isSuccess;
}
}
}