aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Adapters/IPayment.cs')
-rw-r--r--Adapters/IPayment.cs9
1 files changed, 9 insertions, 0 deletions
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