public void Execute()
 {
     Console.Clear();
     Console.WriteLine("Adding Orders");
     Console.WriteLine("Please fill out the Information");
     Console.WriteLine(UserIO.Separator);
     order.dateTime     = io.AddGetDate();
     order.CustomerName = io.GettingName();
     tax        = io.GettingState();
     product    = io.GettingProduct();
     order.Area = io.GettingArea();
     io.AddAssigningValue(order);
     UserIO.DisplayForCustomer(order);
     order = io.AddingOrders(order);
     if (order != null)
     {
         AddResponse response = orderManager.AddOrder(order.dateTime, order);
         if (response.Success)
         {
             Console.WriteLine("Order have been process");
             Console.ReadKey();
         }
     }
 }