Files
designPattern/DesignPattern/Factory/AbstractFactory/AbstractFactory.cs

16 lines
314 B
C#
Raw Normal View History

2022-07-25 17:57:01 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Factory.AbstractFactory
{
// Abstract Factory
public abstract class AbstractFactory
{
public abstract ProductA CreateProductA();
public abstract ProductB CreateProductB();
}
}