Example #1
0
        public MainWindow()
        {
            //IDAL myDal = new LINQ_DAL();
            IDAL myDal = new SQL_DAL();

            IBL clubMember  = new ClubMember_BL(myDal);
            IBL customer    = new Customer_BL(myDal);
            IBL department  = new Department_BL(myDal);
            IBL employee    = new Employee_BL(myDal);
            IBL product     = new Product_BL(myDal);
            IBL transaction = new Transaction_BL(myDal);
            IBL user        = new User_BL(myDal);

            IPL myPL = new PL_GUI(clubMember, customer, department, employee, product, transaction, user);

            myPL.Run();
        }
Example #2
0
        public MainProgram()
        {
            IDAL myDal = new LINQ_DAL();

            IBL clubMember  = new ClubMember_BL(myDal);
            IBL customer    = new Customer_BL(myDal);
            IBL department  = new Department_BL(myDal);
            IBL employee    = new Employee_BL(myDal);
            IBL product     = new Product_BL(myDal);
            IBL transaction = new Transaction_BL(myDal);
            IBL user        = new User_BL(myDal);

            IPL myPL = new PL_GUI(clubMember, customer, department, employee, product, transaction, user);
            //myPL.Run();


            ///////////////////
            //Purchase p = new Purchase(product);
            //p.Show();
            ///////////////////
        }