using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using FactoryMethod.Products; namespace FactoryMethod.Creators { internal class ConcreateCreator2 : Creator { public override IProduct FactoryMethod() { return new ConcreateProduct2(); } } }