public override void AwakeFromNib()
        {
            base.AwakeFromNib();

            // Create the Occupation Table Data Source and populate it
            ds = new ClubsDS(AppDelegate.Conn);

            if (ClubsTable != null)
            {
                // Populate the Product Table
                ClubsTable.DataSource = ds;
                ClubsTable.Delegate   = new ClubsDelegate(ds);
            }
        }
Example #2
0
 public ClubsDelegate(ClubsDS dataSource)
 {
     // Initialize
     this.DataSource = dataSource;
 }