Beispiel #1
0
        public IActionResult History(List <History> history)
        {
            var user    = UserFromSession();
            var service = new Services.HistoryService(user);

            history = service.UserHistory();
            return(View(history));
        }