public ActionResult SelektionGetLastModifiedEvents(DateTime? From = null, DateTime? To = null) { lock (Data.DbServer3) { EntriesPresentationModel Primary = new EntriesPresentationModel(); Primary.LastUsedFrom = From; Primary.LastUsedTo = To; Primary.GetLastModifiedEvents(); return View("EntriesPresentationView", Primary); } }
public ActionResult SelektionGetLastModifiedEvents(DateTime? From = null, DateTime? To = null) { var Primary = new EntriesPresentationModel(); Primary.LastUsedFrom = From; Primary.LastUsedTo = To; Primary.GetLastModifiedEvents(); return View("Index", Primary); }