예제 #1
0
        public async Task <IActionResult> Reservation()
        {
            var userId = await _userManager.GetUserIdByEmailAsync(User.Identity.Name);

            return(View(_reservationManager.GetAllUserReservations(userId)));
        }