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