Ejemplo n.º 1
0
        public string ExcluirFormaPag(MLL.FormaPagamento formaPag)
        {
            string            result   = "";
            FormaPagamentoDAL formaDAL = new FormaPagamentoDAL(db);

            if (formaDAL.Remover(formaPag))
            {
                result = "ok";
            }
            else
            {
                result = "erro - " + formaDAL.erro;
            }

            return(result);
        }