Exemplo n.º 1
0
 private static void processProductName(string text)
 {
     if (_firstRowForProduct)
     {
         _currentProduct.Name = BasicStringFieldProcessor.UpdateField(text);
     }
 }
Exemplo n.º 2
0
 private static void processSummary(string text)
 {
     if (_firstRowForProduct)
     {
         _currentProduct.Summary = BasicStringFieldProcessor.UpdateField(text);
     }
 }
Exemplo n.º 3
0
 private static void processDescription(string text)
 {
     if (_firstRowForProduct)
     {
         _currentProduct.Description = BasicStringFieldProcessor.UpdateField(text);
     }
 }
Exemplo n.º 4
0
 private static void processInventoryLink(string text)
 {
     if (_firstRowForProduct)
     {
         _currentProduct.ProductLevelInventoryLink = BasicStringFieldProcessor.UpdateField(text);
     }
 }