Files
parr_api/PARR.EsppTemplateSync/Services/Manager.cs

30 lines
810 B
C#

using Microsoft.Extensions.Logging;
namespace PARR.EsppTemplateSync.Services
{
internal class Manager : IManager
{
private readonly ILogger<Manager> logger;
private readonly IParserService parserService;
public Manager(ILogger<Manager> logger, IParserService parserService)
{
this.logger = logger;
this.parserService = parserService;
}
public Task<bool> ManageFileAsync(string path)
{
throw new NotImplementedException();
}
public async Task<bool> ManageStringAsync(string str)
{
bool isSuccess = true;
//TOD if (str == null || str.Length <= 2)
//var await parserService.ParseStringAsync(str);
return isSuccess;
}
}
}