コード例 #1
0
        public async Task <IActionResult> Details(int id)
        {
            TimesheetEntry entry = await _timesheetEntryRepository.GetById(id);

            return(View(_mapper.ConvertToViewModel(entry)));
        }