Beispiel #1
0
        private void btnLoginn_Click(object sender, EventArgs e)
        {
            int          flag   = 0;
            CustomerList cslist = CustomerList.CreateList();

            for (int i = 0; i < cslist.Cstmrlist.Count; i++)
            {
                if (txtUsername.Text == cslist.Cstmrlist[i].Username1)
                {
                    if (txtPassword.Text == cslist.Cstmrlist[i].Password1)
                    {
                        Login lgn = Login.Creator();
                        lgn.LoginCustomer1 = cslist.Cstmrlist[i];
                        Form3 shopping = new Form3();
                        this.Visible     = false;
                        txtUsername.Text = "";
                        txtPassword.Text = "";
                        shopping.ShowDialog();
                        this.Visible = true;
                        flag         = 1;
                        break;
                    }
                }
            }
            if (flag == 0)
            {
                MessageBox.Show("ERROR! Username or Password not true.");
            }
        }
Beispiel #2
0
        private void btnSignupsignup_Click(object sender, EventArgs e)
        {
            if (txtPasswordsignup.Text.ToString() == txtpasswordconfirmsignup.Text.ToString() && txtPasswordsignup.Text.ToString() != "")
            {
                CustomerList list = CustomerList.CreateList();
                IdCount      Cn   = IdCount.Creator();
                for (int i = 0; i < list.Cstmrlist.Count; i++)
                {
                    if (txtUsernamesignup.Text == list.Cstmrlist[i].Username1)
                    {
                        MessageBox.Show("There is  this username already in the system. Please enter different username");
                        break;
                    }

                    else
                    {
                        Customer cs = new Customer();
                        cs.CustomerID1 = Cn.CustumerId1;
                        cs.Name1       = txtName.Text.ToString();
                        cs.Address1    = txtAdress.Text.ToString();
                        cs.Email1      = txtEmail.Text.ToString();
                        cs.Username1   = txtUsernamesignup.Text.ToString();
                        cs.Password1   = txtPasswordsignup.Text.ToString();
                        list.Cstmrlist.Add(cs);
                        txtName.Text                  = "";
                        txtAdress.Text                = "";
                        txtEmail.Text                 = "";
                        txtUsernamesignup.Text        = "";
                        txtPasswordsignup.Text        = "";
                        txtpasswordconfirmsignup.Text = "";
                        MessageBox.Show("Sign up is successful. Now, you can login. ");
                        grpbxLogin.Location = new Point(12, 12);
                        grpbxMain.Visible   = false;
                        grpbxLogin.Visible  = true;
                        grpbxSignup.Visible = false;
                        this.Size           = new Size(290, 210);
                        Cn.CustumerId1     += 1;
                        break;
                    }
                }
            }
            else
            {
                MessageBox.Show("Please enter same password");
                txtpasswordconfirmsignup.Text = "";
                txtPasswordsignup.Text        = "";
            }
        }
Beispiel #3
0
 private void listCustomerToolStripMenuItem_Click(object sender, EventArgs e)
 {
     listView1.Visible = true;
     grpbxBook.Visible = false;
     grpbxMagazine.Visible = false;
     grpbxMusicCD.Visible = false;
     grpbxDelete.Visible = false;
     listView1.Size = new Size(504, 265);
     this.Size = new Size(542, 337);
     listView1.Items.Clear();
     listView1.Columns.Clear();
     listView1.Columns.Add("Customer ID", 100);
     listView1.Columns.Add("Name Surname",100);
     listView1.Columns.Add("Adress",100);
     listView1.Columns.Add("Email", 100);
     listView1.Columns.Add("Username", 100);
     CustomerList list = CustomerList.CreateList();
     for(int i=0;i<list.Cstmrlist.Count;i++)
     {
         ListViewItem cll = new ListViewItem(list.Cstmrlist[i].printCustomerDetails());
         listView1.Items.Add(cll); 
     }
    
 }
Beispiel #4
0
        private void Form1_Load(object sender, EventArgs e)
        {
            grpbxMain.Location    = new Point(0, -6);
            this.Size             = new Size(420, 260);
            grpbxLogin.Visible    = false;
            grpbxSignup.Visible   = false;
            grpbxSupplier.Visible = false;
            IdCount      Cn   = IdCount.Creator();
            CustomerList list = CustomerList.CreateList();
            Customer     cs1  = new Customer();

            cs1.CustomerID1 = Cn.CustumerId1;
            Cn.CustumerId1 += 1;
            cs1.Name1       = "Mihai Andronache";
            cs1.Address1    = "Sector 1 Bucuresti";
            cs1.Email1      = "*****@*****.**";
            cs1.Username1   = "Mihai.26";
            cs1.Password1   = "123456";
            list.Cstmrlist.Add(cs1);
            Customer cs2 = new Customer();

            cs2.CustomerID1 = Cn.CustumerId1;
            Cn.CustumerId1 += 1;
            cs2.Name1       = "Beldea Cornelia";
            cs2.Address1    = "Upstate New York";
            cs2.Email1      = "*****@*****.**";
            cs2.Username1   = "C.34";
            cs2.Password1   = "123456";
            list.Cstmrlist.Add(cs2);
            Customer cs3 = new Customer();

            cs3.CustomerID1 = Cn.CustumerId1;
            Cn.CustumerId1 += 1;
            cs3.Name1       = "Paun Cosmin";
            cs3.Address1    = "Paris,Franta";
            cs3.Email1      = "*****@*****.**";
            cs3.Username1   = "Cosmin.07";
            cs3.Password1   = "123456";
            list.Cstmrlist.Add(cs3);
            Customer cs4 = new Customer();

            cs4.CustomerID1 = Cn.CustumerId1;
            Cn.CustumerId1 += 1;
            cs4.Name1       = "Qui-Gon-Jinn";
            cs4.Address1    = "Spatiu";
            cs4.Email1      = "*****@*****.**";
            cs4.Username1   = "QCJTheBest";
            cs4.Password1   = "123456";
            list.Cstmrlist.Add(cs4);
            Customer cs5 = new Customer();

            cs5.CustomerID1 = Cn.CustumerId1;
            Cn.CustumerId1 += 1;
            cs5.Name1       = "Cristina Ovidiu";
            cs5.Address1    = "Braila,Braila";
            cs5.Email1      = "*****@*****.**";
            cs5.Username1   = "Ovicriss.06";
            cs5.Password1   = "123456";
            list.Cstmrlist.Add(cs5);


            ProductLists Prlist = ProductLists.CreateList();
            Book         bk1    = new Book(Cn.ProductId1, "Cel mai iubit dintre pamanteni", 32.68, 6, 78975470, "Daniel Negreanu", "Humanitas", 724);

            Cn.ProductId1 += 1;
            Prlist.Booklist.Add(bk1);
            Book bk2 = new Book(Cn.ProductId1, "The Dark Forest", 15.6, 12, 97897560, "Adam Fawer", "April Y.", 475);

            Cn.ProductId1 += 1;
            Prlist.Booklist.Add(bk2);
            Book bk3 = new Book(Cn.ProductId1, "Cei Trei Muschetari", 9.88, 14, 97860552, "Gabreil Garcia Marquez", "Editura Universitara", 136);

            Cn.ProductId1 += 1;
            Prlist.Booklist.Add(bk3);
            MusicCD ms1 = new MusicCD(Cn.ProductId1, "Red", 10, 5, "Taylor Swift", "Pop");

            Cn.ProductId1 += 1;
            Prlist.MusicCDlist.Add(ms1);
            MusicCD ms2 = new MusicCD(Cn.ProductId1, "Rolling Deep", 12, 13, "Adele", "Caz");

            Cn.ProductId1 += 1;
            Prlist.MusicCDlist.Add(ms2);
            MusicCD ms3 = new MusicCD(Cn.ProductId1, "Every Way That I Can", 15, 11, "Sertab Erener", "pop");

            Cn.ProductId1 += 1;
            Prlist.MusicCDlist.Add(ms3);
            Magazine mg1 = new Magazine(Cn.ProductId1, "4-4-2", 4.3, 12, 54657856, "Sport");

            Cn.ProductId1 += 1;
            Prlist.Magazinelist.Add(mg1);
            Magazine mg2 = new Magazine(Cn.ProductId1, "Otomobil", 5.3, 4, 48567896, "Auto");

            Cn.ProductId1 += 1;
            Prlist.Magazinelist.Add(mg2);
            Magazine mg3 = new Magazine(Cn.ProductId1, "PcMagazine", 6, 6, 85623458, "Technology");

            Cn.ProductId1 += 1;
            Prlist.Magazinelist.Add(mg3);
        }