summaryrefslogtreecommitdiff
path: root/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/IBankAccountFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/IBankAccountFactory.cs')
-rw-r--r--DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/IBankAccountFactory.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/IBankAccountFactory.cs b/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/IBankAccountFactory.cs
new file mode 100644
index 0000000..5099fd8
--- /dev/null
+++ b/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/IBankAccountFactory.cs
@@ -0,0 +1,8 @@
+using DesignPatterns.Test;
+
+namespace DesignPatterns.Factory {
+ public interface IBankAccountFactory {
+ IBankAccount CreateChequingAccount( );
+ IBankAccount CreateSavingsAccount( );
+ }
+} \ No newline at end of file