public ActionResult Sheets(string id)
        {
            var model = new OrthoSheetsViewModel();

            model.Sheets        = _tripSheetService.ListSheets();
            model.SelectedSheet = id;

            return(View(model));
        }