예제 #1
0
        public NotificationResult Salvar(Arma_Classe entidade)
        {
            var notificationResult = new NotificationResult();

            try
            {
                if (entidade.CodArma == 0)
                {
                    notificationResult.Add(new NotificationError("Arma Classe não pode ser zero.", NotificationErrorType.USER));
                }

                if (notificationResult.IsValid)
                {
                    _arma_Classe_Repositorio.Adicionar(entidade);

                    notificationResult.Add("Arma Classe cadastrado com sucesso.");
                }

                notificationResult.Result = entidade;

                return(notificationResult);
            }
            catch (Exception ex)
            {
                return(notificationResult.Add(new NotificationError(ex.Message)));
            }
        }
예제 #2
0
 public string Excluir(Arma_Classe entidade)
 {
     return("");
 }
예제 #3
0
 public string Excluir(Arma_Classe entidade)
 {
     return(arma_classe_Servico.Excluir(entidade));
 }
예제 #4
0
 public NotificationResult Salvar(Arma_Classe entidade)
 {
     return(arma_classe_Servico.Salvar(entidade));
 }