builder pattern

This commit is contained in:
2023-03-09 14:56:31 +09:00
parent ca0d1a5d2e
commit b8d8258a6b
7 changed files with 170 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Builder.Builder
{
internal interface IBuilder
{
void BuildPartA();
void BuildPartB();
void BuildPartC();
}
}