public AccountController(IYmsApiHttpHandler httpHandler, IWebHostEnvironment environment)
 {
     this.httpHandler = httpHandler;
     this.environment = environment;
 }
Exemple #2
0
 public HomeController(IYmsApiHttpHandler httpHandler)
 {
     this.httpHandler = httpHandler;
 }
 public ProductController(IYmsApiHttpHandler httpHandler)
 {
     this.httpHandler = httpHandler;
 }
Exemple #4
0
 public ImageController(IYmsApiHttpHandler httpHandler, IHostEnvironment environment)
 {
     this.httpHandler = httpHandler;
     this.environment = environment;
 }
Exemple #5
0
 public OrderController(IYmsApiHttpHandler httpHandler, IClaims claims, IConfiguration configuration)
 {
     this.httpHandler   = httpHandler;
     this.claims        = claims;
     this.configuration = configuration;
 }