public CodeGenerationContext AddContent(TemplateStandard standard, TemplateFile file, string text)
 {
     _contents.Add(ContentBase.With(standard, file, _filer, _source, text));
     return(this);
 }
 public CodeGenerationContext AddContent(TemplateStandard standard, Type type)
 {
     _contents.Add(ContentBase.With(standard, type));
     return(this);
 }
 public CodeGenerationContext AddContent(TemplateStandard standard, Type protocolType, Type actorType)
 {
     _contents.Add(ContentBase.With(standard, protocolType, actorType));
     return(this);
 }