public JsonResult Get(int id)
        {
            var result = _IVSARepostory.getStudyPlan(planId: id);

            // string result = JsonConvert.SerializeObject(plan);
            return(new JsonResult(result));
        }
Пример #2
0
        public JsonResult Get(int id)
        {
            //Completed courses
            var result = _IVSARepostory.getStudyPlan(planId: id);

            return(new JsonResult(result));
        }