namespace DesignPatterns.Factory { public interface IBank { string Name { get; } IBankAccountFactory GetAccountFactory( ); } }