Exemple #1
0
        public bool Remover(int id)
        {
            Pet pet = _petRepository.ObterPorId(id);

            if (pet == null)
            {
                Notificar("Pet não encontrado.");
                return(false);
            }
            ExcluirImagemDiretorio(pet.Foto);
            _petRepository.Excluir(pet);
            return(false);
        }