Ejemplo n.º 1
0
 public GetFavoritesOffersQuery(IReadOnlyFavoritesService favoritesService, IMapper mapper,
                                IHttpContextService httpContextService)
 {
     this.favoritesService   = favoritesService;
     this.mapper             = mapper;
     this.httpContextService = httpContextService;
 }
Ejemplo n.º 2
0
        public FavoritesModel(IReadOnlyFavoritesService favoritesService, IOffersFilterService offersFilterService, IMapper mapper)
        {
            this.favoritesService    = favoritesService;
            this.offersFilterService = offersFilterService;
            this.mapper = mapper;

            Title = "Favorites";
        }