public async Task <IEnumerable <TimeEntryResponse> > GetPreceptorTimeEntriesAsync(PreceptorTimeEntryRequest req)
        {
            var result = await _repo.GetTeacherAsync(req.Year, req.Id);

            return(result.Select(x => _mapper.Map(x)).ToList());
        }