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