private void Next_Click(object sender, RoutedEventArgs e) { string firstName1, lastName1, phone1, relation1; string firstName2, lastName2, phone2, relation2; string notes1, notes2; DateTime dateRightNow = DateTime.Now; firstName1 = UserInputFirstName1.Text; lastName1 = UserInputLastName1.Text; phone1 = UserInputPhone1.Text; relation1 = UserInputRelation1.Text; notes1 = eNotesTextBox1.Text; UserEmployeeEmergencyCollection.addUserEmergencyContact1(passedUsername, firstName1, lastName1, phone1, relation1, dateRightNow, sessionUserEmployeeAdd3, dateRightNow, sessionUserEmployeeAdd3, notes1); if (eContact2Valid.Text == "Yes") { firstName2 = UserInputFirstName2.Text; lastName2 = UserInputLastName2.Text; phone2 = UserInputPhone2.Text; relation2 = UserInputRelation2.Text; notes2 = eNotesTextBox2.Text; UserEmployeeEmergencyCollection2.addUserEmergencyContact2(passedUsername, firstName2, lastName2, phone2, relation2, dateRightNow, sessionUserEmployeeAdd3, dateRightNow, sessionUserEmployeeAdd3, notes2); } else if (eContact2Valid.Text == "No") { } EmployeeShow main = new EmployeeShow(sessionUserEmployeeAdd3, passedUsername); App.Current.MainWindow = main; this.Close(); main.Show(); }
private void Application_Startup(object sender, StartupEventArgs e) { Window1 wnd = new Window1(); DateTime value = new DateTime(2016, 11, 1, 5, 20, 00); //call for loading in users from database goes here. //below is a temporary test case object UserEmployeeCollection.addUser(1, "Derek", "Thomas", "Blankinship", 1, 1, "admin", "password", value, 'M', "574-123-1234", "574-234-2345", "N/A", "574-345-3456", "N/A", "*****@*****.**", value, value, value, "admin", value, "admin", "no notes"); UserEmployeeCollection.addUser(1, "Hunter", "H", "Johnson", 1, 1, "user2", "12345", value, 'M', "574-410-2323", "574-234-7811", "N/A", "574-420-6969", "N/A", "*****@*****.**", value, value, value, "admin", value, "admin", "no notes"); UserEmployeeCollection.addUser(1, "Andrew", "A", "Stone", 1, 1, "user3", "12345", value, 'M', "574-123-4201", "574-234-6955", "N/A", "574-666-1337", "N/A", "*****@*****.**", value, value, value, "admin", value, "admin", "no notes"); UserEmployeeAddressCollection.addUserAddress1("admin", "exampleStreet1", "exampleCity1", "exampleState1", 12345, value, "admin", value, "admin", "no notes"); UserEmployeeAddressCollection2.addUserAddress2("admin", "exampleStreet2", "exampleCity2", "exampleState2", 23456, value, "admin", value, "admin", "no notes"); UserEmployeeEmergencyCollection.addUserEmergencyContact1("admin", "Tara", "Blankinship", "574-567-8901", "wife", value, "admin", value, "admin", "no notes"); UserEmployeeEmergencyCollection2.addUserEmergencyContact2("admin", "ASD", "adf", "adsf", "adsf", value, "admin", value, "admin", "no notes"); UserEmployeeAddressCollection.addUserAddress1("user2", "321 Red Drive", "exampleCity1", "exampleState1", 54378, value, "admin", value, "admin", "no notes"); UserEmployeeAddressCollection.addUserAddress1("user3", "275 Green Avenue", "exampleCity1", "exampleState1", 43589, value, "admin", value, "admin", "no notes"); UserEmployeeEmergencyCollection.addUserEmergencyContact1("user2", "John", "Meme", "574-567-6969", "wife", value, "admin", value, "admin", "no notes"); UserEmployeeEmergencyCollection.addUserEmergencyContact1("user3", "Max", "Smith", "574-216-2017", "wife", value, "admin", value, "admin", "no notes"); CustomerCollection.AddCustomer("Walmart", 3, "walmart", "edlp33", "574-201-5669", "574-420-7878", "*****@*****.**", value, "N/A", value, "N/A", "no notes"); CustomerCollection.AddCustomer("Dicks Sporting Goods", 3, "dicks", "sports", "574-343-5555", "574-777-9999", "*****@*****.**", value, "admin", value, "admin", "no notes"); CustomerCollection.AddCustomer("Dominos Pizza", 3, "dominos", "pizza", "574-666-6666", "574-323-0909", "*****@*****.**", value, "admin", value, "admin", "no notes"); CustomerAddressCollection.addCustomerAddress("walmart", "123 Streert Name", "Mishawaka", "Indiana", 46544, value, "admin", value, "admin", "no notes"); CustomerAddressCollection.addCustomerAddress("dicks", "234 Streert Name", "Mishawaka", "Indiana", 46544, value, "admin", value, "admin", "no notes"); CustomerAddressCollection.addCustomerAddress("dominos", "345 Streert Name", "Mishawaka", "Indiana", 46544, value, "admin", value, "admin", "no notes"); AssetCollection.AddAsset("Lawnmowers", 2000.0, 10.0, "Hardware", value, "admin", value, "admin", "for cutting grass"); AssetCollection.AddAsset("Leafblower", 500.0, 5.0, "Hardware", value, "admin", value, "admin", "for blowing leaves"); AssetCollection.AddAsset("Snowblower", 400.0, 4.0, "Hardware", value, "admin", value, "admin", "for blowing snow"); UserPositionIDCollection.addUserPositionID(1, "Owner", 10000000.00); UserPositionIDCollection.addUserPositionID(2, "Employee", 200000.00); UserPositionIDCollection.addUserPositionID(3, "Intern", 0.0); wnd.Show(); }