Пример #1
0
 public static void Start()
 {
     while (true)
     {
         Console.WriteLine("Residential or Non-Residential");
         Console.WriteLine("1: Residential. ");
         Console.WriteLine("2: Non-Residential");
         var msg  = $"[Enter option number:] (1 or 2)";
         var type = StampDutyHelper.GetInputFromConsole(1, 2, msg);
         if (type == 1)
         {
             var property = new ResidentialProperty();
             GetResidentialPropertyValue(property);
             var stampDuty = property.CalculateStampDuty();
             StampDutyHelper.PrintTax(stampDuty);
         }
         else
         {
             var property = new NonResidentialProperty();
             GetNonResidentialPropertyValue(property);
             var stampDuty = property.CalculateStampDuty();
             StampDutyHelper.PrintTax(stampDuty);
         }
         System.Console.WriteLine("Another Property...");
     }
 }
Пример #2
0
        public static void Start()
        {
            while (true)
            {
                Console.WriteLine("Is the property Residential or Non-Residential");
                Console.WriteLine("1: Residential. ");
                Console.WriteLine("2: Non-Residential");
                var msg  = $"[Enter option number:] (1 or 2)";
                var type = StampDutyHelper.GetInputFromConsole(1, 2, msg);
                if (type == 1)
                {
                    var residentialPropertyInfo = new List <KeyValuePair <string, string> >();
                    Console.WriteLine("What is the Residential Property Value:");
                    var propertyValue = Convert.ToDouble(System.Console.ReadLine());
                    residentialPropertyInfo.Add(new KeyValuePair <string, string>("Value", propertyValue.ToString(CultureInfo.InvariantCulture)));

                    Console.WriteLine("Is property Freehold?");
                    Console.WriteLine("(1) Freehold  ");
                    Console.WriteLine("(2) Leasehold ");
                    var freehold = StampDutyHelper.GetInputFromConsole(1, 2, msg);
                    residentialPropertyInfo.Add(freehold == 1 ? new KeyValuePair <string, string>("Holding", "Freehold") : new KeyValuePair <string, string>("Holding", "Leasehold"));

                    Console.WriteLine("Is property Joined Owned? ");
                    Console.WriteLine("(1) Joined ");
                    Console.WriteLine("(2) Not Joined ");
                    var joined = StampDutyHelper.GetInputFromConsole(1, 2, msg);
                    residentialPropertyInfo.Add(joined == 1 ? new KeyValuePair <string, string>("Ownership", "Joined") : new KeyValuePair <string, string>("Ownership", "Sole Owner"));

                    Console.WriteLine("Is property SecondHome?");
                    Console.WriteLine("(1) FirstHome");
                    Console.WriteLine("(2) SecondHome ");

                    var secondHome = StampDutyHelper.GetInputFromConsole(1, 2, msg);
                    if (secondHome == 2)
                    {
                        var value  = residentialPropertyInfo.Find(x => x.Key == "Value").Value.ToString();
                        var result = StampDutyCalculatorHelper.CalculateResidentialSecondHome(Convert.ToDouble(value));
                        residentialPropertyInfo.Add(new KeyValuePair <string, string>("Additonal Property", "Yes"));
                        StampDutyHelper.PrintTax(result);
                    }
                    else
                    {
                        var value  = residentialPropertyInfo.Find(x => x.Key == "Value").Value.ToString();
                        var result = StampDutyCalculatorHelper.CalculateResidentialHome(Convert.ToDouble(value));
                        residentialPropertyInfo.Add(new KeyValuePair <string, string>("Ownership", "No"));
                        StampDutyHelper.PrintTax(result);
                    }
                }
                else
                {
                    var nonresidentialPropertyInfo = new List <KeyValuePair <string, string> >();

                    Console.WriteLine("Non-Residential Property Value:");
                    var propertyValue = Convert.ToDouble(Console.ReadLine());
                    nonresidentialPropertyInfo.Add(new KeyValuePair <string, string>("Value", propertyValue.ToString(CultureInfo.InvariantCulture)));

                    Console.WriteLine("Is property Freehold? (1) Freehold (2) Leasehold ");
                    Console.WriteLine("(1) Freehold");
                    Console.WriteLine("(2) Leasehold");

                    var freehold = StampDutyHelper.GetInputFromConsole(1, 2, msg);

                    nonresidentialPropertyInfo.Add(new KeyValuePair <string, string>("Holding", "Leasehold"));
                    var value  = nonresidentialPropertyInfo.Find(x => x.Key == "Value").Value.ToString();
                    var result = StampDutyCalculatorHelper.CalculateNonResidentialProperty(Convert.ToDouble(value));
                    StampDutyHelper.PrintTax(result);
                }
                Console.WriteLine("Another Property...");
            }
        }