public bool CreateAnuncio(AnuncioModel anuncio) { return(_anuncioService.Add(TransformObject.ModelEntity <Anuncio>(anuncio))); }
public AnuncioModel GetById(int id) { var anuncio = TransformObject.ModelEntity <AnuncioModel>(_anuncioService.GetById(id)); return(anuncio); }
public bool EditAnuncio(AnuncioModel anuncio) { return(_anuncioService.Update(TransformObject.ModelEntity <Anuncio>(anuncio))); }