示例#1
0
        public DataTable LocalizarPessoa(string MsForms, int id = 0)
        {
            DataTable tabela = new DataTable();

            EmpresaDAL empDAL = new EmpresaDAL(this.Conexao);

            tabela = empDAL.LocalizarPessoa(MsForms, id);

            return(tabela);
        }