public async Task <ActionResult <InterviewDTO> > GetById(string Id)
        {
            var result = await _interviewService.GetAllWithIncludesAsyncById(Guid.Parse(Id));

            return(result);
        }