Example #1
0
        public JsonpResult GetTypicalPriceRange()
        {
            using (AttributeRepository aRepo = new AttributeRepository())
            {
                var theList = aRepo.GetTypicalPriceRange();

                return(new JsonpResult()
                {
                    Data = theList,
                    JsonRequestBehavior = JsonRequestBehavior.AllowGet
                });
            }
        }