public void Start()
 {
     context_db = new FinalProjectDatabase();
     proRep = new ProductRepository(context_db);
     ShowViewProductSelection();
 }
 public void Start()
 {
     context_db = new FinalProjectDatabase();
     cusRep = new CustomerRepository(context_db);
     ShowViewCustomerSelection();
 }
 public void Start()
 {
     context_db = new FinalProjectDatabase();
     supRep = new SupplierRepository(context_db);
     ShowViewSupplierSelection();
 }
 public void Start()
 {
     context_db = new FinalProjectDatabase();
     catRep = new CategoryRepository(context_db);
     ShowViewCategorySelection();
 }
        /// <summary>
        /// Main entry point of the Controller.
        /// Called once (from App.xaml.cs) this will initialise the application
        /// </summary>

        public void Start()
        {
            context_db = new FinalProjectDatabase();
            empRep = new EmployeeRepository(context_db);
            ShowViewEmployeeSelection();
        }