Exemplo n.º 1
0
        public void ExcluirRegra(int regra_id)
        {
            RepRegra rep = new RepRegra();

            if (rep.FindById(regra_id) != null)
            {
                rep.Delete(regra_id);
            }
        }
Exemplo n.º 2
0
        public Regra ConsultarId(int regra_id)
        {
            RepRegra rep = new RepRegra();

            return(rep.FindById(regra_id));
        }