Browse Source

Fixed bug in catalog.api

pull/1770/head
Sumit Ghosh 3 years ago
parent
commit
e22f980184
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/Services/Catalog/Catalog.API/Grpc/CatalogService.cs

+ 2
- 1
src/Services/Catalog/Catalog.API/Grpc/CatalogService.cs View File

@ -2,12 +2,13 @@
using static CatalogApi.Catalog;
namespace Microsoft.eShopOnContainers.Services.Catalog.API.Grpc;
using Microsoft.Extensions.Logging;
public class CatalogService : CatalogBase
{
private readonly CatalogContext _catalogContext;
private readonly CatalogSettings _settings;
private readonly Microsoft.Extensions.Logging.ILogger _logger;
private readonly ILogger _logger;
public CatalogService(CatalogContext dbContext, IOptions<CatalogSettings> settings, ILogger<CatalogService> logger)
{


Loading…
Cancel
Save