Example #1
0
 public ProductController(IGetProductApi api)
 {
     this.api = api;
 }
Example #2
0
 public HomeController(IGetProductApi api, IWebHostEnvironment web)
 {
     this.api = api;
     this.web = web;
 }