public IComandResult Handle(AlterarFuncaoCommands comand) { //verificar se tem notificação no comand if (!comand.IsValid()) { return(new ComandResult(false, "Por favor corrija os campos abaixo", comand.Notifications)); } var serie = _repository.Existe(comand.Id); if (serie != null) { serie.Alterar(comand.Nome); _repository.Alterar(serie); } else { return(new ComandResult(false, "Série não existe,tente novamente!!", new { })); } return(new ComandResult(true, "Dados Alterados com Sucesso!!", new { })); }