public HomeController(AppSettings appSetting, ILogger <HomeController> logger, Northwind.Core.Data.NorthwindRepository northwindRepository)
 {
     this.appSetting          = appSetting;
     this.logger              = logger;
     this.northwindRepository = northwindRepository;
 }
 public ProductsViewComponent(Northwind.Core.Data.NorthwindRepository northwindRepository)
 {
     this.northwindRepository = northwindRepository;
 }