public NotificationResult Salvar(ListaMagia entidade) { var NotificationResult = new NotificationResult(); try { if (entidade.CodFicha != 0 && entidade.CodJogador != 0 && entidade.CodMagia != 0) { entidade.CodFicha = entidade.CodFicha; entidade.CodJogador = entidade.CodJogador; entidade.CodMagia = entidade.CodMagia; if (NotificationResult.IsValid) { _listaMagiaRepositorio.Adicionar(entidade); NotificationResult.Add("Cadastrado!"); } return(NotificationResult); } else { return(NotificationResult.Add(new NotificationError("Erro no cadastro!", NotificationErrorType.USER))); }; } catch (Exception ex) { return(NotificationResult.Add(new NotificationError(ex.Message))); } }
public NotificationResult Excluir(ListaMagia entidade) { var NotificationResult = new NotificationResult(); try { if (entidade.CodFicha != 0 && entidade.CodJogador != 0 && entidade.CodMagia != 0) { if (NotificationResult.IsValid) { _listaMagiaRepositorio.Remover(entidade); NotificationResult.Add("Cadastro excluido com Sucesso!"); return(NotificationResult); } else { return(NotificationResult.Add(new NotificationError("O codigo informado não existe!", NotificationErrorType.USER))); } } else { return(NotificationResult.Add(new NotificationError("O codigo informado não existe!", NotificationErrorType.USER))); } } catch (Exception ex) { return(NotificationResult.Add(new NotificationError(ex.Message))); } }
public NotificationResult Atualizar(ListaMagia entidade) { var NotificationResult = new NotificationResult(); try { if (entidade.CodFicha != 0 && entidade.CodJogador != 0 && entidade.CodMagia != 0) { entidade.CodFicha = entidade.CodFicha; } entidade.CodJogador = entidade.CodJogador; entidade.CodMagia = entidade.CodMagia; if (NotificationResult.IsValid) { _listaMagiaRepositorio.Atualizar(entidade); NotificationResult.Add("Cadastro Alterado com Sucesso!"); return(NotificationResult); } else { return(NotificationResult.Add(new NotificationError("O codigo informado não existe!", NotificationErrorType.USER))); } } catch (Exception) { return(NotificationResult.Add(new NotificationError("O codigo informado não existe!", NotificationErrorType.USER))); } }
public NotificationResult Salvar(ListaMagia entidade) { return(_listaMagiaServico.Salvar(entidade)); }
public NotificationResult Atualizar(ListaMagia entidade) { return(_listaMagiaServico.Atualizar(entidade)); }
public NotificationResult Excluir(ListaMagia entidade) { return(_listaMagiaServico.Excluir(entidade)); }
public NotificationResult Salvar(ListaMagia entidade) { throw new NotImplementedException(); }