The Builder Pattern in .NET: Listing 4

Listing 4: StoutBuilder.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace VSMBuilderPatternDemo.Builder
{
    class StoutBuilder : IBeerBuilder
    {
        private Beer _beer = new Beer();
 
        public void Brew()
        {
            _beer.Volume = 72;
        }
 
        public void Ferment()
        {
            _beer.Potency = 6.5;
        }
 
        public void Bottle()
        {
            _beer.Label = "Sturdy Stout";
        }
 
        public void Age()
        {
            _beer.Price = 22;
        }
 
        public Beer GetBeer()
        {
            return _beer;
        }
    }
}

About the Author

Eric Vogel is a Senior Software Developer for Red Cedar Solutions Group in Okemos, Michigan. He is the president of the Greater Lansing User Group for .NET. Eric enjoys learning about software architecture and craftsmanship, and is always looking for ways to create more robust and testable applications. Contact him at [email protected].

comments powered by Disqus

Featured

Subscribe on YouTube