Example #1
0
        public FavoritesModel(IReadOnlyFavoritesService favoritesService, IOffersFilterService offersFilterService, IMapper mapper)
        {
            this.favoritesService    = favoritesService;
            this.offersFilterService = offersFilterService;
            this.mapper = mapper;

            Title = "Favorites";
        }
Example #2
0
        public IndexModel(IReadOnlyOfferService offerService, IOffersFilterService offersFilterService, IMapper mapper)
        {
            this.offerService        = offerService;
            this.offersFilterService = offersFilterService;
            this.mapper = mapper;

            Title = "Home";
        }