24 lines
531 B
C#
24 lines
531 B
C#
using Pannenkoekenhuis.Builder;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pannenkoekenhuis
|
|
{
|
|
class TestBuilder
|
|
{
|
|
|
|
public static void TestBuilder1()
|
|
{
|
|
PannenkoekBuilder builder = new PannenkoekBuilder();
|
|
Pannenkoek p = builder.MaakPannenkoek("Spekpannenkoek", 10)
|
|
.MetSpek()
|
|
.Formaat(17)
|
|
.Build();
|
|
}
|
|
|
|
}
|
|
}
|