//Define the Pattern Interface and Handler Objects.
//Define the IAbstractFactory interface to be used as the "blueprint" for the factory application classes.
public interface IAbstractFactory
{
IAbstractBag CreateBag();
IAbstractShoes CreateShoes();
IAbstractBelts CreateBelts();
}
//The GucciFactory class (object) represents a factory class that instantiates a particular set of product classes. These product classes are related to each other.
public class GucciFactory : IAbstractFactory
{
public IAbstractBag CreateBag()
{
return new GucciBag();
}
public IAbstractBag CreateShoes()
{
return new GucciShoes();
}
public IAbstractBag CreateBelts()
{
return new GucciBelts();
}
}
//The PoochyFactory class (object) represents a factory class that instantiates a particular set of product classes. These product classes are related to each other.
public class PoochyFactory : IAbstractFactory
{
public IAbstractBag CreateBag()
{
return new PoochyBag();
}
public IAbstractBag CreateShoes()
{
return new PoochyShoes();
}
public IAbstractBag CreateBelts()
{
return new PoochyBelts();
}
}