コード例 #1
0
ファイル: DictionaryController.cs プロジェクト: ZzzJimmy/-
        public ActionResult DeleteCode(string typeId, string verId, string codeId)
        {
            List <string> codes = codeId.Split(',').ToList();

            foreach (string code in codes)
            {
                dictionaryBLL.RemoveStandardCodeForm(typeId, verId, code);
            }
            return(Success("操作成功。"));
        }