Exemplo n.º 1
0
        private void Submit_Click(object sender, RoutedEventArgs e)
        {
            LVRSMEMBERSEntities context = new LVRSMEMBERSEntities();
            member temp = new member();

            temp.lastName   = lastName.Text;
            temp.firstName  = firstName.Text;
            temp.middleName = middleName.Text;

            if (temp.lastName == "" || temp.firstName == "")
            {
                MessageBox.Show("Please ensure that a value is entered for both first and last name");
            }
            else
            {
                context.members.Add(temp);
                context.SaveChanges();

                var memberID = context.members.Where(n => n.lastName == temp.lastName)
                               .Where(n => n.firstName == temp.firstName)
                               .OrderByDescending(n => n.memberID)
                               .FirstOrDefault();
                MessageBox.Show("Added Member " + temp.lastName + ", " + temp.firstName + " with MemberID " + memberID.memberID);
                lastName.Text   = "";
                firstName.Text  = "";
                middleName.Text = "";
            }
        }
Exemplo n.º 2
0
        private void Submit_Click(object sender, RoutedEventArgs e)
        {
            LVRSMEMBERSEntities context = new LVRSMEMBERSEntities();
            int memID = Int32.Parse(memberID.Text);

            if (birthdayPresent())
            {
                birthday tempBirthday = new birthday();
                tempBirthday.memberID  = memID;
                tempBirthday.birthDate = DateTime.Parse(birthDate.Text);
                context.birthdays.Add(tempBirthday);
            }

            if (addressPresent())
            {
                address tempAddress = new address();
                tempAddress.memberID      = memID;
                tempAddress.addressStreet = addressStreet.Text;
                tempAddress.addressCity   = addressCity.Text;
                tempAddress.addressState  = addressState.Text;
                tempAddress.addressZip    = Int32.Parse(addressZip.Text);
                context.addresses.Add(tempAddress);
            }

            if (emailPresent())
            {
                email tempEmail = new email();
                tempEmail.memberID     = memID;
                tempEmail.emailAddress = email.Text;
                context.emails.Add(tempEmail);
            }

            if (phonePresent())
            {
                phone tempPhone = new phone();
                tempPhone.memberID    = memID;
                tempPhone.phoneNumber = phone.Text;
                context.phones.Add(tempPhone);
            }

            if (countyNumberPresent())
            {
                countyNumber tempCountyNumber = new countyNumber();
                tempCountyNumber.memberID = memID;
                tempCountyNumber.dateCountyNumberReceived = DateTime.Parse(countyNumberDate.Text).Date;
                tempCountyNumber.counNum = Int32.Parse(countyNumber.Text);
                context.countyNumbers.Add(tempCountyNumber);
            }

            if (jotFormPresent())
            {
                jotForm tempJotForm = new jotForm();
                tempJotForm.memberID        = memID;
                tempJotForm.jotFormReceived = DateTime.Parse(jotDate.Text).Date;
                tempJotForm.comments        = jotComments.Text;
                context.jotForms.Add(tempJotForm);
            }

            if (interviewContactPresent())
            {
                interviewContact tempInterviewContact = new interviewContact();
                tempInterviewContact.memberID    = memID;
                tempInterviewContact.contactDate = DateTime.Parse(contactDate.Text).Date;
                tempInterviewContact.comments    = contactComments.Text;
                context.interviewContacts.Add(tempInterviewContact);
            }

            if (interviewDatePresent())
            {
                interviewSchedule tempInterviewSchedule = new interviewSchedule();
                tempInterviewSchedule.memberID           = memID;
                tempInterviewSchedule.interviewScheduled = DateTime.Parse(interviewDate.Text).Date;
                tempInterviewSchedule.comments           = interviewComments.Text;
                context.interviewSchedules.Add(tempInterviewSchedule);
            }

            if (fingerprintPresent())
            {
                fingerprint tempFingerprint = new fingerprint();
                tempFingerprint.memberID = memID;
                tempFingerprint.fingerprintAppointmentDate = DateTime.Parse(fingerprintDate.Text).Date;
                tempFingerprint.comments = fingerprintComments.Text;
                context.fingerprints.Add(tempFingerprint);
            }

            if (physicalPresent())
            {
                physicalPassed   tempPhysicalPassed   = new physicalPassed();
                physicalSchedule tempPhysicalSchedule = new physicalSchedule();
                tempPhysicalPassed.memberID               = memID;
                tempPhysicalPassed.passPhysical           = (bool)physicalPass.IsChecked;
                tempPhysicalPassed.comments               = physicalComments.Text;
                tempPhysicalSchedule.memberID             = memID;
                tempPhysicalSchedule.physicalScheduleDate = physicalDate.SelectedDate;
                context.physicalSchedules.Add(tempPhysicalSchedule);
                context.physicalPasseds.Add(tempPhysicalPassed);
            }

            if (backgroundPresent())
            {
                background tempBackground = new background();
                tempBackground.memberID             = memID;
                tempBackground.dateBackgroundPassed = backgroundDate.SelectedDate;
                tempBackground.backgroundSuccess    = (bool)backgroundPass.IsChecked;
                tempBackground.comments             = backgroundComments.Text;
                context.backgrounds.Add(tempBackground);
            }

            if (vrsPresent())
            {
                vr tempVrs = new vr();
                tempVrs.memberID         = memID;
                tempVrs.dateVrsCompleted = vrsDate.SelectedDate;
                tempVrs.vrsPassed        = (bool)vrsPass.IsChecked;
                tempVrs.comments         = vrsComments.Text;
            }

            context.SaveChanges();
        }