feat(all): Проекты под задачи синхронизации нарядов еспп и агентов
This commit is contained in:
21
PARR.EsppApi/EsppApiService.cs
Normal file
21
PARR.EsppApi/EsppApiService.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user