Ejemplo n.º 1
0
        public JsonResult GetMenuCreation(string title, string id)
        {
            MenuDisplayResponse response = _menuCategoryService.GetMaxDisplayOrder(title, id);

            return(Json(new { errorCode = response.ErrorCode, title = response.Title, displayOrder = response.DisplayOrder }, JsonRequestBehavior.AllowGet));
        }