Exemple #1
0
        public void Register()
        {
            if (BazaDanych.uzytkownicy.Count != 0)
            {
                userID = BazaDanych.uzytkownicy[BazaDanych.uzytkownicy.Count - 1].userID + 100;
            }
            else
            {
                userID = 1;
            }
            do
            {
                System.Console.WriteLine("Podaj Login");
                login = System.Console.ReadLine();
            } while (BazaDanych.sprawdzLogin(login) == true);

            do
            {
                System.Console.WriteLine("Podaj Hasło");
                password = System.Console.ReadLine();
            } while (BazaDanych.sprawdzHaslo(password) == true);


            System.Console.WriteLine("Podaj Imię");
            name = System.Console.ReadLine();

            System.Console.WriteLine("Podaj Nazwisko");
            surname = System.Console.ReadLine();

            System.Console.WriteLine("Podaj Miasto");
            city = System.Console.ReadLine();

            System.Console.WriteLine("Podaj Adres");
            address = System.Console.ReadLine();

            do
            {
                System.Console.WriteLine("Podaj E-Mail");
                email = System.Console.ReadLine();
            } while (BazaDanych.sprawdzEmail(email) == true);



            Console.WriteLine("Twoje dane:");



            System.Console.WriteLine(name);
            System.Console.WriteLine(surname);
            System.Console.WriteLine(city);
            System.Console.WriteLine(address);
            System.Console.WriteLine(email);
            System.Console.WriteLine(login);
            System.Console.WriteLine(password);



            BazaDanych.dodajUzytkownika(this);
        }
Exemple #2
0
        public void znajdzPaczke()
        {
            System.Console.WriteLine("podaj ID paczki");
            int packageID = Int32.Parse(System.Console.ReadLine());

            Package paczka = BazaDanych.znajdzPaczke(packageID);

            if (paczka != null)
            {
                paczka.checkStatus();
            }

            System.Console.WriteLine("czy chcesz zmienic status paczki? \n 1. Tak\n 2.Nie\n");
            int j = Int32.Parse(System.Console.ReadLine());

            if (j == 1)
            {
                paczka.changeStatus();
            }
        }
Exemple #3
0
        public User(string _login, string _password, string _name, string _surname, string _address, string _city, string _email, string _phone)
        {
            if (BazaDanych.uzytkownicy.Count != 0)
            {
                userID = BazaDanych.uzytkownicy[BazaDanych.uzytkownicy.Count - 1].userID + 100;
            }
            else
            {
                userID = 1;
            }

            login    = _login;
            password = _password;
            name     = _name;
            surname  = _surname;
            address  = _address;
            city     = _city;
            email    = _email;
            phone    = _phone;

            BazaDanych.dodajUzytkownika(this);
        }
Exemple #4
0
        public void userLogin()

        {
            User uzytkownik = null;

            do
            {
                System.Console.WriteLine("podaj login");
                string templogin = System.Console.ReadLine();
                System.Console.WriteLine("podaj haslo");
                string temppassword = System.Console.ReadLine();



                uzytkownik = BazaDanych.zaloguj(templogin, temppassword);
            } while (uzytkownik == null);


            this.login    = uzytkownik.login;
            this.password = uzytkownik.password;
            this.name     = uzytkownik.name;
            this.surname  = uzytkownik.surname;
            this.address  = uzytkownik.address;
            this.city     = uzytkownik.city;
            this.email    = uzytkownik.email;
            this.phone    = uzytkownik.phone;

            Console.WriteLine("Twoje dane:");



            System.Console.WriteLine(name);
            System.Console.WriteLine(surname);
            System.Console.WriteLine(city);
            System.Console.WriteLine(address);
            System.Console.WriteLine(email);
            System.Console.WriteLine(login);
            System.Console.WriteLine(password);
        }