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