public NotificationResult Salvar(Proficiencia_Pericias entidade) { var notificationResult = new NotificationResult(); try { if (entidade.CodClasse == 0 || entidade.CodPericia == 0) { notificationResult.Add(new NotificationError("Qtde. de produtos no Estoque inválido.", NotificationErrorType.USER)); } if (notificationResult.IsValid) { _proficiencia_Pericia_Repositorio.Adicionar(entidade); notificationResult.Add("Produto cadastrado com sucesso."); } notificationResult.Result = entidade; return(notificationResult); } catch (Exception ex) { return(notificationResult.Add(new NotificationError(ex.Message))); } }
public string Excluir(Proficiencia_Pericias entidade) { return(""); }
public string Excluir(Proficiencia_Pericias entidade) { return(proficiencia_Pericia_Servico.Excluir(entidade)); }
public NotificationResult Salvar(Proficiencia_Pericias entidade) { return(proficiencia_Pericia_Servico.Salvar(entidade)); }