Files
OOP/Payment/PayPalPayment.cs

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");
}
}
}