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