22 lines
543 B
C#
22 lines
543 B
C#
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();
|
|
}
|
|
}
|
|
}
|