public async Task <IReadOnlyCollection <CatDTO> > Get()
 {
     return(_mapper.mapper.Map <IReadOnlyCollection <CatDTO> >(await _repository.GetAsync()));
 }