namespace fix

main
syneffort 2 years ago
parent a0f6934fed
commit 6d776fd755
  1. 4
      DesignPatternGuru/FactoryMethod/Client.cs
  2. 4
      DesignPatternGuru/FactoryMethod/Creators/ConcreateCreator1.cs
  3. 4
      DesignPatternGuru/FactoryMethod/Creators/ConcreateCreator2.cs
  4. 4
      DesignPatternGuru/FactoryMethod/Creators/Creator.cs
  5. 2
      DesignPatternGuru/FactoryMethod/Products/ConcreateProduct1.cs
  6. 2
      DesignPatternGuru/FactoryMethod/Products/ConcreateProduct2.cs
  7. 2
      DesignPatternGuru/FactoryMethod/Products/IProduct.cs

@ -1,4 +1,6 @@
using System; using FactoryMethod.Creators;
using FactoryMethod.Products;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using FactoryMethod.Product; using FactoryMethod.Products;
namespace FactoryMethod.Creator.Creator namespace FactoryMethod.Creators
{ {
internal class ConcreateCreator1 : Creator internal class ConcreateCreator1 : Creator
{ {

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using FactoryMethod.Product; using FactoryMethod.Products;
namespace FactoryMethod.Creator.Creator namespace FactoryMethod.Creators
{ {
internal class ConcreateCreator2 : Creator internal class ConcreateCreator2 : Creator
{ {

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using FactoryMethod.Product; using FactoryMethod.Products;
namespace FactoryMethod.Creator namespace FactoryMethod.Creators
{ {
abstract internal class Creator abstract internal class Creator
{ {

@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace FactoryMethod.Product namespace FactoryMethod.Products
{ {
internal class ConcreateProduct1 : IProduct internal class ConcreateProduct1 : IProduct
{ {

@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace FactoryMethod.Product namespace FactoryMethod.Products
{ {
internal class ConcreateProduct2 : IProduct internal class ConcreateProduct2 : IProduct
{ {

@ -4,7 +4,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace FactoryMethod.Product namespace FactoryMethod.Products
{ {
internal interface IProduct internal interface IProduct
{ {
Loading…
Cancel
Save