using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FactoryMethod.Products { internal class ConcreateProduct2 : IProduct { public string Operation() { return "{Result of ConcreateProduct2}"; } } }