Exemplo n.º 1
0
 public CsvWorker(StreamReader productFile, StreamReader shopsFile)
 {
     Shops    = CsvParser.ParseShops(shopsFile);
     Products = CsvParser.ParseProducts(productFile, Shops);
 }