Example #1
0
        // GET: Offer/Details/5
        public ActionResult Details(short id)
        {
            var offer = _offerAppService.GetOffer(id);

            if (offer == null)
            {
                return(HttpNotFound());
            }
            return(View(offer));
        }
Example #2
0
        // GET: api/OfferApi/5
        public Offer Get(short id)
        {
            var offer = _offerAppService.GetOffer(id);

            return(offer);
        }