Files
designPatternGuru/DesignPatternGuru/AbstractFactory/Products/ConcreteProductA1.cs

17 lines
304 B
C#
Raw Normal View History

2023-03-02 16:22:54 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFactory.Products
{
internal class ConcreteProductA1 : IAbstractProductA
{
public string UsefulFunctionA()
{
return "The result of the product A1.";
}
}
}