namespace UOP1.Factory { /// /// Represents a factory. /// /// Specifies the type to create. public interface IFactory { T Create(); } }