Пример #1
0
        public IEnumerable <ClassifiedModel> MyClassifieds(int status)
        {
            var classified = _classifiedService.GetClassifieds(CurrentUserId, status);

            if (classified != null)
            {
                return(classified);
            }
            else
            {
                throw new HttpResponseException(NotFoundMessage("لا يوجد"));
            }
        }