public static IPropertyWebsiteParser GetPropertyWebsiteParser(string propertyWebsiteName, IImmoCache cache)
        {
            switch (propertyWebsiteName)
            {
            case "Structura":
            {
                return(new StructuraParser(cache));
            }
            }

            return(null);
        }
예제 #2
0
 public PropertyWebsiteParserBase(IImmoCache immoCache)
 {
     this.ImmoCache = immoCache;
 }
예제 #3
0
 public StructuraParser(IImmoCache immoCache) : base(immoCache)
 {
 }