public ImageProcessor(IHttpClientWrapperAsync httpClient, IFaceDetection faceDetection, IImageCache imageCache, IImageEffect imageEffect) { this.httpClient = httpClient; this.faceDetection = faceDetection; this.imageCache = imageCache; this.imageEffect = imageEffect; }
public HtmlProcessor(IHttpClientWrapperAsync httpClient, string CDNAdress) { this.httpClient = httpClient; this.CDNAdress = CDNAdress; }
public DefaultProcessor(IHttpClientWrapperAsync httpClient) { this.httpClient = httpClient; }