public bool EditClassify(InputGuideClassifyDto dto) { var EditC = _GuideClassifyService.EditGuideClassify(CurrentLanguage, dto); if (EditC != null) { return((bool)EditC); } else { throw new HttpResponseException(NotFoundMessage("موقع المنطقة لايتطابق مع موقعك")); } // return _ClassifyService.EditFeaturedClassify(CurrentLanguage, dto, guid); }
public int AddClassify(InputGuideClassifyDto dto) {//LanguageHelper CurrentLanguage, var addC = _GuideClassifyService.AddGuideClassify(CurrentLanguage, dto); if (addC != null) { return((int)addC); } else { throw new HttpResponseException(NotFoundMessage("موقع المنطقة لايتطابق مع موقعك")); } // return _ClassifyService.AddFeaturedClassify(CurrentLanguage, dto, guid); // return _languageService.Add(dto); }