Product Feed
ProductFeed using FashionExchange.Common.BLL; using FashionExchange.Common.DAL; using FashionExchange.Common.Enums; using FashionExchange.Common.Utils; using log4net; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; namespace FashionExchange.Common.ProductFeeds { public abstract class ProductFeed { protected ILog log { get { return LogManager.GetLogger(this.GetType().Name); } } protected Store Store { get { return StoreManager.GetStoreByScraperClassName(this.GetType().Name); } } protected virtual bool ProductSizeOnSeparateRow { get { return false; } } private HashSet _existingProductNames = null; protected HashSet ExistingProductNames { get { if (_existingProductNames == null) {...