Using Fluent Interface design here
if i call something like
dog.Train("Running").Train("Eating").Do("Running").Do("Eating");
what is the name of this pattern ? is it chain-of-responsibility or there any specific design pattern name associated with it?