コード例 #1
0
        public ActionResult CheckAll(OrgPeopleModel m)
        {
            var list = m.CurrentNotChecked();

            CurrentDatabase.TagAll(list, m.OrgTag);
            return(PartialView("People", m));
        }
コード例 #2
0
        public ActionResult CheckAll(OrgPeopleModel m)
        {
            DbUtil.Db.CurrentOrg.CopyPropertiesFrom(m);
            var list = m.CurrentNotChecked();

            DbUtil.Db.TagAll(list, m.OrgTag);
            return(PartialView("People", m));
        }
コード例 #3
0
ファイル: OrgPeople.cs プロジェクト: stevesloka/bvcms
 public ActionResult CheckAll(OrgPeopleModel m)
 {
     DbUtil.Db.CurrentOrg.CopyPropertiesFrom(m);
     var list = m.CurrentNotChecked();
     DbUtil.Db.TagAll(list, m.OrgTag);
     return PartialView("People", m);
 }