summaryrefslogtreecommitdiff
path: root/DesignPatterns/src/app/DesignPatterns.Factory/Interfaces/IBankAccountFactory.cs
blob: 5099fd8ca4323baad72d355bdee457d2dc2b87d5 (plain)
1
2
3
4
5
6
7
8
using DesignPatterns.Test;

namespace DesignPatterns.Factory {
	public interface IBankAccountFactory {
		IBankAccount CreateChequingAccount( );
		IBankAccount CreateSavingsAccount( );
	}
}