public void initSupps(SuppliersRepo sr) { // 1 2 3 4 5 6 7 string[] supps = { "Kansas Beef", "General Chicanery", "Vegetables Incorporated", "Pacific Seafood", "All Things Fried International", "Ardent Mills", "DG Foods Inc." }; foreach (string supp in supps) { sr.CreateSupplier(supp); } }
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); } }