Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created June 1, 2021 08:49
Show Gist options
  • Select an option

  • Save ssukhpinder/46dd42667d476fa7bd58554c662586ff to your computer and use it in GitHub Desktop.

Select an option

Save ssukhpinder/46dd42667d476fa7bd58554c662586ff to your computer and use it in GitHub Desktop.
public class CarFactory
{
public Car Build(CarBuilder builder)
{
builder.SetName();
builder.SetSpeed();
builder.SetIsSUV();
return builder.GetCar();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment