Ejemplo n.º 1
0
        public async Task <JsonResult> DelPlanPoint(string planID, int num)
        {
            using (PlanRepository planRepo = new PlanRepository())
            {
                var res = await planRepo.DelPlanPointAsync(planID, num);

                return(Json(new { isOk = res }));
            }
        }