Пример #1
0
        public void CalculateSellingPrice(IAsset asset, ICommissionCalculator commissionCalculator)
        {
            decimal commission = commissionCalculator.CalculateCommission(asset.Price, asset.CommissionRate);

            decimal sellingPrice = asset.Price + commission;

            if (typeof(UrbanPlot).IsInstanceOfType(asset))
            {
                Console.WriteLine("\nThe selling price for the Asset with the Cadastral Reference '" + asset.GetAssetAttribute() +
                                  "' is " + sellingPrice + " RON. \n" + "The applied commission is " + commission + " RON.");
            }
            else
            {
                Console.WriteLine("\nThe selling price for the Asset with the address '" + asset.GetAssetAttribute() +
                                  "' is " + sellingPrice + " RON. \n" + "The applied commission is " + commission + " RON.");
            }
        }