TonyTroev

Something

Feb 5th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. class GoldenEditionBooks : Book
  2.     {
  3.         public GoldenEditionBooks(string author, string title, double price)
  4.             : base(author, title, price)
  5.         {
  6.         }
  7.        
  8.         public override double Price { get => base.Price * 1.3; }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment