コード例 #1
0
        public ActionResult Index(OrgSearchModel m)
        {
            var model = new OrgSearchDrop(m);

            model.RemoveExistingLop(DbUtil.Db, model.Id, OrgSearchDrop.Op);
            return(View(model));
        }
コード例 #2
0
 public ActionResult Process(OrgSearchDrop model)
 {
     model.UpdateLongRunningOp(DbUtil.Db, OrgSearchDrop.Op);
     if (!model.Started.HasValue)
     {
         DbUtil.LogActivity($"OrgSearchDrop {model.Count} Members from {model.OrgCount} Orgs");
         model.Process(DbUtil.Db);
     }
     return(View(model));
 }
コード例 #3
0
        public ActionResult Index(OrgSearchModel m)
        {
            var model = new OrgSearchDrop(m);

            return(View(model));
        }
コード例 #4
0
        public ActionResult Index(OrgSearchModel m)
        {
            var model = new OrgSearchDrop(m, CurrentDatabase.Host);

            return(View(model));
        }