Exemplo n.º 1
0
        private void loginProcess()
        {
            foreach (Control c in this.Controls.OfType <TextBox>().Where(x => x.Text.ToString() == "" || x.Text.ToString() == string.Empty))
            {
                MessageBox.Show("Please fill the form");
                return;
            }

            bool validEmail = helper.emailValidation(textBox1.Text);

            if (validEmail)
            {
                var isLogin = data.Employees.Where(
                    x => x.email.Equals(textBox1.Text) &&
                    x.password.Equals(textBox2.Text));

                if (isLogin.Count() > 0)
                {
                    mainMenu mainView = new mainMenu(isLogin.Select(x => x.roleId).First());
                    parent.view(mainView, new string[] { });
                }
                else
                {
                    MessageBox.Show("Email or Password wrong!");
                }
            }
            else
            {
                MessageBox.Show("Email not valid!");
            }
        }
Exemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            mainMenu mainView = new mainMenu(int.Parse(par[0]));

            parent.view(mainView, new string[] { });
        }