public async Task <IEnumerable <ValidationResult> > CreateAsync(AnuncioDto dto)
        {
            var entity = _mapper.Map <Anuncio>(dto);

            return(await _repository.CreateAsync(entity));
        }