Example #1
0
        public JsonResult ApprovePurchaseOrder(int id)
        {
            int result = 0;

            result = _iPurchaseService.ApprovePurchaseOrder(id);
            return(Json(new { result = result }));
        }