13 lines
281 B
C#
13 lines
281 B
C#
namespace OOP.Payment
|
|
{
|
|
public class GenericPayment
|
|
{
|
|
public int Amount { get; set; }
|
|
public string Currency { get; set; }
|
|
|
|
public virtual void ProcessPayment()
|
|
{
|
|
Console.WriteLine("Processing generic payment");
|
|
}
|
|
}
|
|
} |