aboutsummaryrefslogtreecommitdiff
blob: d6b7953a2f9844281fb273d48655ebc871c81207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using KukaPizza.Models;

namespace KukaPizza.Adapters
{
    public class MasterCardPayment 
    {
        public void PayWithMastercard(double price)
        {
            Console.WriteLine($"\nPaid {price} with Mastercard card.");
        }
    }
}