コード例 #1
0
ファイル: PetService.cs プロジェクト: mikefarias/adotapet
        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);
        }