1 2 3 4 5 6
namespace DesignPatterns.Factory { public interface IBank { string Name { get; } IBankAccountFactory GetAccountFactory( ); } }