Beispiel #1
0
 public TemplateFactory(ITemplateFactoryOptions options)
 {
     _options = options;
 }
Beispiel #2
0
 public AddTemplates()
 {
     _options = Mock.Of <ITemplateFactoryOptions>();
     _builder = new TemplateFactoryOptionsBuilder(_options);
 }
Beispiel #3
0
 public GetPrototype()
 {
     _templates[_template.Name] = _template;
     _options = new TemplateFactoryOptions(_templates);
 }
Beispiel #4
0
 internal TemplateFactoryOptionsBuilder(ITemplateFactoryOptions options)
 {
     _options = options;
 }
Beispiel #5
0
 public AddPrototype()
 {
     _options = new TemplateFactoryOptions(_templates);
 }