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