Ejemplo n.º 1
0
 public ListingGenerator(ListingGeneratorOptions options)
 {
     this._options = options;
 }
Ejemplo n.º 2
0
 public string GenerateListing(ListingGeneratorOptions options)
 {
     using (var generator = new ListingGenerator(options)) {
         return(generator.GenerateListing(this));
     }
 }