Example #1
0
        public void AddEmployeeTest()
        {
            string first    = "Ethan";
            string last     = "Burlison";
            string username = "******";

            Help.AddEmployee(first, last, username);
        }
Example #2
0
        private void btnAdd_Click(object sender, EventArgs e)
        {
            HelpFacade help     = new HelpFacade();
            string     first    = txtFirstName.Text.ToString();
            string     last     = txtLastName.Text.ToString();
            string     userName = txtUserName.Text.ToString();

            help.AddEmployee(first, last, userName);
        }