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