Beispiel #1
0
 public ActionResult AboutCaches(bool refresh = false)
 {
     var vd = new AboutModel
         {
             AutoRefresh = refresh
         };
     return View("About.Caches", vd);
 }
Beispiel #2
0
 public ActionResult AboutCaches(string filter, bool refresh = false)
 {
     var vd = new AboutModel
         {
             AutoRefresh = refresh,
             Filter = filter
         };
     return View("About.Caches", vd);
 }