示例#1
0
        public ActionResult AddEquip()
        {
            QueryModal        qm  = new QueryModal();
            SpeciatyManagment spm = new SpeciatyManagment();

            qm.sps = spm.getsps();
            return(View(qm));
        }
示例#2
0
        public ActionResult EquipQuery()
        {
            QueryModal qm = new QueryModal();

            qm.wf = CWFEngine.ListAllWFDefine();
            PersonManagment pm = new PersonManagment();

            qm.UserHasEquips = pm.Get_Person_Cj((Session["User"] as EquipModel.Entities.Person_Info).Person_Id);
            return(View(qm));
        }