From b1eb36d3fbc5012b07489454a7452e8488507f6a Mon Sep 17 00:00:00 2001 From: marcinzelent Date: Sun, 21 Feb 2021 14:13:49 +0100 Subject: Initial commit --- Adapters/IPayment.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Adapters/IPayment.cs (limited to 'Adapters/IPayment.cs') diff --git a/Adapters/IPayment.cs b/Adapters/IPayment.cs new file mode 100644 index 0000000..c07b7e5 --- /dev/null +++ b/Adapters/IPayment.cs @@ -0,0 +1,9 @@ +using KukaPizza.Models; + +namespace KukaPizza.Adapters +{ +public interface IPayment + { + void Pay(double price); + } +} \ No newline at end of file -- cgit v1.2.3