Пример #1
0
        public List <ClassifiedModel> GetTopRatedClassifieds(int fetchCount)
        {
            var classifieds = _classifiedService.GetTopRated(fetchCount);

            if (classifieds == null)
            {
                throw new HttpResponseException(NotFoundMessage("لا يوجد إعلانات"));
            }
            return(classifieds);
        }