Ejemplo n.º 1
0
 public RatingService(
     DataContext context,
     IMapper mapper,
     IRatingImageService ratingImageService
     )
 {
     _context            = context;
     _mapper             = mapper;
     _ratingImageService = ratingImageService;
 }
 public RatingImageController(
     IRatingImageService ratingImageService,
     IUriService uriService,
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     IWebHostEnvironment env
     )
 {
     _ratingImageService = ratingImageService;
     _uriService         = uriService;
     _mapper             = mapper;
     _appSettings        = appSettings;
     _env = env;
 }