使用Action委托协助添加/修改
Posted Coder_小菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Action委托协助添加/修改相关的知识,希望对你有一定的参考价值。
Action Mc = () => { Model.Stuno = sStuno; Model.UserId = sUserId; Model.Pno = sPno; Model.Name = sName; Model.Gender = sGender; Model.Birthday = sBirthday; if (!string.IsNullOrWhiteSpace(sAge)) { Model.Age = int.Parse(sAge); } Model.Tel = sTel; Model.PoliticalClimate = sPoliticalClimate; if (!OriginalUtil.IsNullOrEmpty(sApprovelStatus)) { Model.ApprovelStatus = int.Parse(sApprovelStatus); Model.ApprovelUser = CurrentUser.UserID; } Model.PostalAddress = sPostalAddress; Model.PersonalProfile = sPersonalProfile; Model.StuSource = 2; Model.Updateon = CurrentUser.UserID; Model.UpdateDate = DateTime.Now; Model.ZuZhiJiGouID = sZuZhiJiGouID; }; bool bResult = false; switch (base.Opt) { case Original.Common.OperationType.Add: Model = new SIP_ProjectMemberEntity(); Model.Createon = CurrentUser.UserID; Model.CreateDate = DateTime.Now; Mc(); bResult = Bll.Add(Model) > 0; break; case Original.Common.OperationType.Edit: Model = Bll.GetModel(int.Parse(Key)); Mc(); bResult = Bll.Update(Model); break; default: break; } Info(bResult, Opt);
以上是关于使用Action委托协助添加/修改的主要内容,如果未能解决你的问题,请参考以下文章