public IHttpActionResult saveContentPage(ContentPage contentPageModel) { try { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (contentPageModel.Id != 0) { contentPageService.UpdateContentPage(contentPageModel); } else { contentPageService.CreateContentPage(contentPageModel); } return(Ok()); } catch (Exception) { return(BadRequest()); } }