zoukankan      html  css  js  c++  java
  • 使用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);
  • 相关阅读:
    20191005
    20191004-gugugu公告
    20191003
    10.2 一天
    考试总结 模拟$105$
    考试总结 模拟$104$
    考试总结 模拟$103$
    考试总结 模拟$102$
    考试总结 模拟$101$
    考试总结 模拟$100$
  • 原文地址:https://www.cnblogs.com/coder-soldier/p/6929757.html
Copyright © 2011-2022 走看看