public ActionResult CancelNewRow(long id = 0)
        {
            var context    = new ContextImplement();
            var controller = new Pleasanter.Controllers.ItemsController();
            var json       = controller.CancelNewRow(
                context: context,
                id: id);

            return(Content(json));
        }