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

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

            if (OpleidingenTable != null)
            {
                // Populate the Product Table
                OpleidingenTable.DataSource = ds;
                OpleidingenTable.Delegate   = new OpleidingenDelegate(ds);
            }
        }
 public OpleidingenDelegate(OpleidingenDS dataSource)
 {
     // Initialize
     this.DataSource = dataSource;
 }