public ActionResult RescindProductMake(string id)
        {
            var result = _kitchenService.RescindSubProduct(id, UserCache.CurrentUser.Id);

            return(Json(new { validate = result }));
        }