Making sure it uses Microsoft Code Convention

This commit is contained in:
2025-08-18 10:33:44 +02:00
parent 7b723f25f6
commit 16fc35e161
10 changed files with 36 additions and 36 deletions

View File

@@ -2,7 +2,7 @@ namespace OOP.Payment
{
public class PayPalPayment : GenericPayment
{
public string email { get; set; }
public string Email { get; set; }
public override void ProcessPayment()
{

View File

@@ -2,7 +2,7 @@ namespace OOP.Payment
{
public class GenericPayment
{
public int amount { get; set; }
public int Amount { get; set; }
public string Currency { get; set; }
public virtual void ProcessPayment()