using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using FactoryMethod.Product; namespace FactoryMethod.Creator.Creator { internal class ConcreateCreator1 : Creator { public override IProduct FactoryMethod() { return new ConcreateProduct1(); } } }