Ejemplo n.º 1
0
        static void AddCustomer()                  ///adding his/her details to list///
        {
            CustBusiness cbl = new CustBusiness(); /// creating object for business logic layer
            Customer     c   = new Customer();     ///creating obj for customer class present in entity layer

            Console.Write("Enter cust ID: ");
            c.CustomerId = int.Parse(Console.ReadLine());
            Console.Write("Enter cust name: ");
            c.CustomerName = Console.ReadLine();
            Console.Write("Enter phno ");
            c.MblNo = Console.ReadLine();
            Console.WriteLine("enter email");
            c.Email = Console.ReadLine();
            Console.WriteLine("enter Country");
            c.Country = Console.ReadLine();
            Console.WriteLine("enter state");
            c.State = Console.ReadLine();
            Console.WriteLine("enter city");
            c.City = Console.ReadLine();
            Console.WriteLine("enter pinno");
            c.PinNo = Console.ReadLine();
            Console.WriteLine("enter hno");
            c.HNo = Console.ReadLine();

            cbl.AddCustomer(c);///call's the business logic layer of AddCustomer method///
            Console.WriteLine("customer details are  Added.\n");
        }
Ejemplo n.º 2
0
        static void GetCustomerById()///geting singe customer details by using his/her id  as primarykey///
        {
            System.Console.Write("Enter the customerID: ");
            int          CustomerId = int.Parse(System.Console.ReadLine());
            CustBusiness cbl        = new CustBusiness();
            Customer     b          = cbl.GetCustomerById(CustomerId);///which cls the businesslogic of getcustomerid method///

            System.Console.WriteLine(b.CustomerId + " " + b.CustomerName + " " + b.MblNo + " " + b.Email + " " + b.City + " " + b.Country + " " + b.HNo + " " + b.State + " " + b.PinNo);
        }
Ejemplo n.º 3
0
        static void DelCustomer()///which clears all the customers stored in list///
        {
            CustBusiness cbl = new CustBusiness();
            Customer     c   = new Customer();

            Console.Write("enter customer id");
            c.CustomerId = int.Parse(Console.ReadLine());
            cbl.DelCustomer(c);
            Console.WriteLine("customer has deleted");
        }
Ejemplo n.º 4
0
        static void RemoveCustomer()  ///removing customer details by using customerid by taking  customer id as primary key///

        {
            CustBusiness cbl = new CustBusiness();
            Customer     c   = new Customer();

            Console.Write("enter customer id");
            int CustomerId = int.Parse(Console.ReadLine());

            cbl.RemoveCustomer(CustomerId);
            Console.WriteLine("customer has deleted");
        }
Ejemplo n.º 5
0
        static void UpdateCustomer()///updating customer details by using customerid as primary key///
        {
            CustBusiness cbl = new CustBusiness();
            Customer     c   = new Customer();

            Console.Write("Enter Existing customer ID: ");
            c.CustomerId = int.Parse(Console.ReadLine());
            Console.Write("enter customer name");
            c.CustomerName = Console.ReadLine();
            cbl.UpdateCustomer(c);
            Console.WriteLine("Customer  Updated");
        }
Ejemplo n.º 6
0
        public static void GetCustomers()///getting all the customers stored in list///
        {
            CustBusiness    cbl       = new CustBusiness();
            List <Customer> customers = cbl.GetCustomers();

            Console.WriteLine("===============   customer Details=============");
            Console.WriteLine("customerID" + "   " + "customerName" + "  " + "mail" + "phno" + "password" + " " + "country" + "state");
            Console.WriteLine("-----------------------------------------------------------------------");

            foreach (Customer item in customers)
            {
                Console.WriteLine(item.CustomerId + " " + item.CustomerName + " " + item.Email + " " + item.PassWord + " " + item.MblNo + " " + item.Country + " " + item.State + " " + item.City + " " + item.HNo + " " + item.PinNo);// Displaying the products
            }
        }
Ejemplo n.º 7
0
        static void LoginCustomer()
        {
            Console.WriteLine("  =======login form=======");
            Console.WriteLine("===========");
            System.Console.WriteLine("enter name");
            string CustomerName = System.Console.ReadLine();

            System.Console.WriteLine("enter password");
            string                 PassWord = System.Console.ReadLine();
            CustBusiness           cbl      = new CustBusiness();
            Tuple <string, string> tuple    = new Tuple <string, string>(CustomerName, PassWord);
            Tuple <string, string> e        = cbl.LoginCustomer(CustomerName, PassWord);

            Console.WriteLine("valid user");
        }