public IComandResult Alterar([FromBody] AlterarAnoCommands command) { try { var result = (ComandResult)_anoHandler.Handle(command); this.Commit(result.Success); return(result); } catch (Exception) { return(null); } }
public IComandResult Handle(AlterarAnoCommands 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 { })); }