@ -1,4 +1,6 @@
using System;
using FactoryMethod.Creators;
using FactoryMethod.Products;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Threading.Tasks;
using FactoryMethod.Product;
namespace FactoryMethod.Creator.Creator
namespace FactoryMethod.Creators
{
internal class ConcreateCreator1 : Creator
internal class ConcreateCreator2 : Creator
namespace FactoryMethod.Creator
abstract internal class Creator
@ -4,7 +4,7 @@ using System.Linq;
namespace FactoryMethod.Product
namespace FactoryMethod.Products
internal class ConcreateProduct1 : IProduct
internal class ConcreateProduct2 : IProduct
internal interface IProduct