Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class GoldenEditionBooks : Book
- {
- public GoldenEditionBooks(string author, string title, double price)
- : base(author, title, price)
- {
- }
- public override double Price { get => base.Price * 1.3; }
- }
Advertisement
Add Comment
Please, Sign In to add comment