예제 #1
0
        public bool ExcluirBL(int id_pes)
        {
            /*criar as regras de negocio*/
            TelefonesDA telefonesDA = new TelefonesDA();

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

            return telefonesDA.ExcluirDA(tel);
        }