public async Task <IEnumerable <IndustryDto> > GetAllIndustries()
 {
     return((await _service.GetCardIndustriesAsync())
            .Select(x => _mapper.Map <IndustryDto>(x)));
 }