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

namespace KukaPizza.Adapters
{
    public class VisaPayment : IPayment
    {
        public void Pay(double price)
        {
            Console.WriteLine($"\nPaid {price} with Visa card.");
        }
    }
}