Esempio n. 1
0
        public ClassifiedDetailsModel GetDetails(int id)
        {
            var classified = _classifiedService.GetDetailsById(id);

            if (classified != null)
            {
                _classifiedService.IncreaseViewCount(id);
                return(classified);
            }
            else
            {
                throw new HttpResponseException(NotFoundMessage("لا يوجد إعلان يتبع لهذا الرقم"));
            }
        }