示例#1
0
 public void initOrgs(OrganizationRepo or)
 {
     //                     1              2            3           4                   5               6                7               8
     string[] orgs = { "McDonald's", "Dairy Queen", "Chili's", "Applebee's", "Buffalo Wild Wings", "Taco Bell", "Tasty China House", "Domino's" };
     foreach (string org in orgs)
     {
         or.CreateOrganization(org);
     }
 }
示例#2
0
        private void button1_Click(object sender, EventArgs e)
        {
            if (!String.IsNullOrEmpty(cOrgNameTextBox.Text))
            {
                OrganizationRepo or = new OrganizationRepo();

                Organization o = or.CreateOrganization(cOrgNameTextBox.Text);

                IReadOnlyList <Organization> l = or.RetrieveOrganizations();
                //Organization org = o.GetOrganization(13);

                cOrgIdNumLabel.Text = o.OrganizationID.ToString();
                cRestOrgComboBox.Items.Add(cOrgNameTextBox.Text);
                orgListBox.Items.Add(cOrgNameTextBox.Text);
                cSelectOrgExpendComboBox.Items.Add(cOrgNameTextBox.Text);
            }
            else
            {
                MessageBox.Show("Organization name cannot be empty");
            }
        }
示例#3
0
        public cDataBaseForm()
        {
            _org       = new OrganizationRepo();
            _rest      = new RestaurantRepository();
            _food      = new FoodRepo();
            _jobs      = new JobsRepo();
            _stock     = new StockItemsRepo();
            _emp       = new EmployeeRepo();
            _suppliers = new SuppliersRepo();
            Init_Tables init = new Init_Tables();

            InitializeComponent();

            cRestOrgComboBox.Items.Clear();

            init.initOrgs(_org);
            init.initRests(_rest);
            init.initJobs(_jobs);
            init.initSupps(_suppliers);
            init.initFoods(_food);
            init.initStockItems(_stock);

            IReadOnlyList <Organization> orgs  = _org.RetrieveOrganizations();
            IReadOnlyList <Restaurant>   rests = _rest.RetrieveRestaurants();
            IReadOnlyList <Jobs>         jobs  = _jobs.RetrieveJobs();

            init.initEmp(_emp, rests, jobs);
            IReadOnlyList <Employee>  emps       = _emp.RetrieveEmployee();
            IReadOnlyList <Supplier>  supps      = _suppliers.RetrieveSuppliers();
            IReadOnlyList <Food>      foods      = _food.RetrieveFood();
            IReadOnlyList <StockItem> stockItems = _stock.RetrieveStockItems();

            foreach (var org in orgs)
            {
                cRestOrgComboBox.Items.Add(org.OrganizationName);
                orgListBox.Items.Add(org.OrganizationName);
                cSelectOrgExpendComboBox.Items.Add(org.OrganizationName);
            }
            foreach (var rest in rests)
            {
                cEmployRestComboBox.Items.Add(rest.RestaurantName);
                restListBox.Items.Add(rest.RestaurantName);
                cInventoryRestComboBox.Items.Add(rest.RestaurantName);
                cSelectRestExpendComboBox.Items.Add(rest.RestaurantName);
                cSelectRestEmpInfoComboBox.Items.Add(rest.RestaurantName);
            }
            foreach (var emp in emps)
            {
                empListBox.Items.Add(emp.EmployeeName);
            }
            foreach (var job in jobs)
            {
                jobsListBox.Items.Add(job.JobName);
                cEmployJobTitleComboBox.Items.Add(job.JobName);
            }
            foreach (var supp in supps)
            {
                suppListBox.Items.Add(supp.SuppliersName);
                cFoodSupplierComboBox.Items.Add(supp.SuppliersName);
                cSelectSupplierSalesComboBox.Items.Add(supp.SuppliersName);
            }
            foreach (var food in foods)
            {
                foodListBox.Items.Add(food.FoodName);
                cInventoryFoodComboBox.Items.Add(food.FoodName);
            }
            foreach (var si in stockItems)
            {
                invListBox.Items.Add(_rest.GetRestaurantByID(si.RestaurantID).RestaurantName + ": " + _food.GetFoodByID(si.FoodID).FoodName);
            }
        }