예제 #1
0
        public JsonResult CopySurvey(string fid, string surName)
        {
            bool success = _surveyService.CopySurvey(fid, surName);

            return(Json(new ResponseViewModel {
                success = success
            }));
        }