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