public AdImageService( IAdImageDAL adImageDAL, AdImageDTOParser adImageDTOParser, IAdImagePath adImagePathHelper) { this.adImageDAL = adImageDAL; this.adImageDTOParser = adImageDTOParser; this.adImagePathHelper = adImagePathHelper; }
public AdImageController( IAdImageService AdImageService, IAdImagePath adImagePath, IImageHelper imageHelper, IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor) { this.adImageService = AdImageService; this.adImagePath = adImagePath; this.imageHelper = imageHelper; }
public AdImageDTOParser(IHostingEnvironment hostingEnvironment, IAppSettings settings, IAdImagePath adImagePathHelper) { this.hostingEnvironment = hostingEnvironment; this.settings = settings; this.adImagePathHelper = adImagePathHelper; }