Exemplo n.º 1
0
        public bool ExcluirBL(int id_pes)
        {
            /*criar as regras de negocio*/
            TelefonesDA telefonesDA = new TelefonesDA();

            return telefonesDA.ExcluirDA(id_pes);
        }
Exemplo n.º 2
0
        public bool ExcluirBL(Telefones tel)
        {
            /*criar as regras de negocio*/
            TelefonesDA telefonesDA = new TelefonesDA();

            return telefonesDA.ExcluirDA(tel);
        }