コード例 #1
0
        public async Task <IActionResult> UserTripDetail(string id)
        {
            if (id == null)
            {
                return(NotFound());
            }

            UserTripDetailViewModel model = await _converterHelper.ToUserTripDetailViewModel(id);

            if (model == null)
            {
                return(NotFound());
            }

            return(View(model));
        }
コード例 #2
0
        public async Task <IActionResult> MyTrips()
        {
            UserEntity user = await _dataContext.Users
                              .Include(t => t.Trips)
                              .ThenInclude(t => t.Expenses)
                              .OrderBy(t => t.UserName)
                              .FirstOrDefaultAsync(t => t.UserName == User.Identity.Name);

            UserTripDetailViewModel model = await _converterHelper.ToUserTripDetailViewModel(user.Id);

            if (model == null)
            {
                return(NotFound());
            }

            return(View(model));
        }