Exemple #1
0
        public ActionResult PersonalLoginHistory(PersonalLoginHistorySearchModel model)
        {
            try
            {
                model.Search( CloudCoreIdentity.UserId);
            }
            catch (ArgumentException ex)
            {
                ShowErrorMessage(ex.Message);
            }

            return View(model);
        }
Exemple #2
0
 public ActionResult PersonalLoginHistory()
 {
     var model = new PersonalLoginHistorySearchModel
     {
         StartDate = DateTime.Today.AddDays(-1),
         EndDate = DateTime.Today
     };
     return View(model);
 }