public void AddToBasket(Shopclass ShopMain, Customer customer, int number, int quantity)//Client Basket { int temp = ShopMain.AllProducts[number - 1]._Amount; if ((temp -= quantity) < 0)//Check for availability { Console.WriteLine("Not enough goods in a shop"); temp = 0; } else if ((customer._Money - (ShopMain.AllProducts[number - 1]._Price) * quantity) < 0) { Console.WriteLine("Not enough money"); } else { customer.BasketOfProducts.Add(new Product(ShopMain.AllProducts[number - 1]._Name, quantity, ShopMain.AllProducts[number - 1]._Price)); ShopMain.AllProducts[number - 1]._Amount -= quantity; // Change Amount in a shop customer._Money -= (ShopMain.AllProducts[number - 1]._Price * quantity); //Change money customer.ShowBasket(); } }
static void Main(string[] args) { List <Product> AllProducts = new List <Product>(); List <Product> TempProduct = new List <Product>(); Shopclass ShopMain = new Shopclass("Pyaterochka", AllProducts); Console.Write("Enter your name: "); string NAME = Console.ReadLine(); Console.Write("Enter the amount of money: "); int MONEY = int.Parse(Console.ReadLine()); Customer customer1 = new Customer(NAME, MONEY); Order order = new Order("Fruits", 110); bool Continue = true; Console.WriteLine("Select the following actions:"); Console.WriteLine("1 - Show List of Product"); Console.WriteLine("2 - Add new pruduct in your own Basket"); Console.WriteLine("3 - Show your own Basket"); Console.WriteLine("4 - Show your Money"); Console.WriteLine("5 - Clear your Basket"); Console.WriteLine("6 - Comit an order"); Console.WriteLine("7 - Initialization"); //Uses by Admin Console.WriteLine("8 - Add new Product"); //Uses by Admin while (Continue) { int choise = int.Parse(Console.ReadLine()); switch (choise) { case 1: ShopMain.ShowAllProducts(); break; case 2: try { Console.WriteLine(); ShopMain.ShowAllProducts(); Console.WriteLine("Enter the product number:"); int number = int.Parse(Console.ReadLine()); Console.WriteLine("Enter the product quantity:"); int quantity = int.Parse(Console.ReadLine()); ShopMain.AddToBasket(customer1, order, number, quantity); } catch (ArgumentOutOfRangeException ex) { Console.WriteLine(ex.Message); } break; case 3: order.ShowBasket(); break; case 4: Console.WriteLine(customer1._Money); break; case 5: ShopMain.ClearBasket(customer1, order, AllProducts); ShopMain.RecovoryList(ref TempProduct); break; case 6: Console.WriteLine("Purchase Information:"); Console.WriteLine("Name of Shop: {0}", ShopMain._NameShop); Console.WriteLine("Type of order and number: {0} -- №_{1}", order._TypeOfOrder, order._NumberOfOrder); Console.WriteLine("Your name: {0}", customer1._FullName); Console.WriteLine("Your products:"); order.ShowBasket(); Console.WriteLine("Money left: {0}", customer1._Money); customer1._StartMoney = customer1._Money; break; case 7: ShopMain.AddNewProduct("Banan", 15, 75, ref TempProduct); ShopMain.AddNewProduct("Apple", 30, 90, ref TempProduct); ShopMain.AddNewProduct("Grape", 25, 100, ref TempProduct); break; case 8: Console.WriteLine(); Console.Write("Enter the product name:"); string name = Console.ReadLine(); Console.Write("Enter an amount of product:"); int amount = int.Parse(Console.ReadLine()); Console.Write("Enter a price of product:"); int price = int.Parse(Console.ReadLine()); ShopMain.AddNewProduct(name, amount, price, ref TempProduct); Console.WriteLine(); break; default: Console.WriteLine("Incorrect selection"); break; } Console.WriteLine("Continue? Enter y/n"); string Choise = Console.ReadLine(); if (Choise == "n") { break; } else { Console.WriteLine("Select another actions"); } continue; } }