public DataTable ListaEmpresaPorId(int idEmpresa)
        {
            DataTable dt = new DataTable();

            if (idEmpresa != 0)
            {
                empresaDAL = new EmpresaDAL();
                dt         = empresaDAL.GetEmpresaPorId(idEmpresa);
            }

            return(dt);
        }