12 lines
246 B
C#
12 lines
246 B
C#
namespace OOP.Payment
|
|
{
|
|
public class PayPalPayment : GenericPayment
|
|
{
|
|
public string email { get; set; }
|
|
|
|
public override void ProcessPayment()
|
|
{
|
|
Console.WriteLine("Processing PayPal");
|
|
}
|
|
}
|
|
} |