PARR.EsppTemplateSyncWorker
This commit is contained in:
7
PARR.EsppTemplateSync/Services/IParserService.cs
Normal file
7
PARR.EsppTemplateSync/Services/IParserService.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace PARR.EsppTemplateSync.Services
|
||||
{
|
||||
internal interface IParserService
|
||||
{
|
||||
Task<bool> ParseAsync(string path);
|
||||
}
|
||||
}
|
||||
15
PARR.EsppTemplateSync/Services/ParserService.cs
Normal file
15
PARR.EsppTemplateSync/Services/ParserService.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user