public async Task <IEnumerable <ConsultantResource> > Get()
        {
            var consultants = await _consultantService.ListAsync();

            var resources = _mapper.Map <IEnumerable <Consultant>, IEnumerable <ConsultantResource> >(consultants);

            return(resources);
        }