Exemplo n.º 1
0
 public void Add(ITranslateSpecification <TSchema> specification)
 {
     _specifications.Add(specification);
 }
Exemplo n.º 2
0
 public TranslateFactory(ITranslateSpecification <TSchema> specification)
 {
     _specification = specification;
 }
Exemplo n.º 3
0
 public ITranslateFactory <TSchema> GetTranslateFactory(ITranslateSpecification <TSchema> specification)
 {
     return(new TranslateFactory <TSchema>(specification));
 }