public async Task <ActionResult> GetInterviewDetail(int userId)
 {
     return(await GetResponseAsync(async() => (await _interviewService.GetInterviewDetail(userId))
                                   .GetMappedResponse <IEnumerable <InterviewDetail>, IEnumerable <InterviewDetail> >(_mapper)));
 }