//Define the Client Object.
//The Client class is responsible for invoking the required methods against a particular product factory.
public class Client
{
private readonly IAbstractBag _bag;
private readonly IAbstractShoes _shoes;
private readonly IAbstractBelts _belts;
public Client(IAbstractFactory factory)
{
_bag = factory.CreateBag();
_shoes = factory.CreateShoes();
_belts = factory.CreateBelts();
}
public void ClientMain()
{
Console.WriteLine($"I bought a bag which is made from {_bag.Material}.");
Console.WriteLine($"I bought some shoes which cost {_shoes.Price}.");
Console.WriteLine($"I bought a belt made from {_belts.Material} and cost {_belts.Price}.");
}
}