public async Task <ActionResult <List <InterviewDTO> > > GetAll()
        {
            var result = await _interviewService.GetAllWithIncludesAsync();

            return(result);
        }