Exemple #1
0
        public MainMenu()
        {
            this.ShowInTaskbar = false;
            InitializeComponent();
            this.routingDao = new RoutingDAO();
            this.productDao = new ProductDAO();
            this.webDao     = new WebDAO();
            searchAndDisplay();


            new Login(this, "", "", 0).Show();
            this.Opacity = 0;
        }
 public ProductDAO()
 {
     this.conn   = new dbConnection().getConnection();
     this.webDao = new WebDAO();
     dao         = new DAO();
 }