public async Task <IEnumerable <TranslationDto> > GetAllAsync()
 {
     return(_mapper.Map <List <TranslationDto> >(await _translationRepo.GetAllAsync()));
 }