namespace OOP.Payment { public class CreditCardPayment : GenericPayment { public string CardNumber { get; set; } public override void ProcessPayment() { Console.WriteLine($"Processing credit card"); } } }