feat(all): Проекты под задачи синхронизации нарядов еспп и агентов

This commit is contained in:
Mikhail Trubnikov
2023-10-19 15:59:57 +10:00
parent 2f88078d37
commit 526140eea4
37 changed files with 508 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
using Microsoft.Extensions.Logging;
using PARR.EsppApi.Models;
namespace PARR.EsppApi
{
internal class EsppApiService : IEsppApiService
{
private readonly ILogger<EsppApiService> logger;
public EsppApiService(ILogger<EsppApiService> logger)
{
this.logger = logger;
}
public async Task<IEnumerable<EsppOrder>> FindOrdersByPrefixAsync(string prefix)
{
logger.LogInformation("Привет!");
throw new NotImplementedException();
}
}
}