Exemplo n.º 1
0
 public ActionResult Cut(QueryModel m)
 {
     try { m.Cut(); }
     catch (Exception ex)
     {
         var errorLog = ErrorLog.GetDefault(null);
         errorLog.Log(new Error(ex));
     }
     return View("Conditions", m);
 }
Exemplo n.º 2
0
 public ActionResult Cut(QueryModel m)
 {
     m.Cut();
     return View("Conditions", m);
 }