Exemplo n.º 1
0
        public virtual AggregationItem ToAggregationItem(searchDto.AggregationItem itemDto, string currentLanguage)
        {
            var result = ServiceLocator.Current.GetInstance <CatalogFactory>().CreateAggregationItem();

            result.InjectFrom <NullableAndEnumValueInjecter>(itemDto);

            if (itemDto.Labels != null)
            {
                result.Label =
                    itemDto.Labels.Where(l => string.Equals(l.Language, currentLanguage, StringComparison.OrdinalIgnoreCase))
                    .Select(l => l.Label)
                    .FirstOrDefault();
            }

            if (string.IsNullOrEmpty(result.Label) && itemDto.Value != null)
            {
                result.Label = itemDto.Value.ToString();
            }

            return(result);
        }
Exemplo n.º 2
0
        public virtual AggregationItem ToAggregationItem(searchDto.AggregationItem itemDto, string currentLanguage)
        {
            var result = new AggregationItem();

            result.Value     = itemDto.Value;
            result.IsApplied = itemDto.IsApplied ?? false;
            result.Count     = itemDto.Count ?? 0;

            if (itemDto.Labels != null)
            {
                result.Label =
                    itemDto.Labels.Where(l => string.Equals(l.Language, currentLanguage, StringComparison.OrdinalIgnoreCase))
                    .Select(l => l.Label)
                    .FirstOrDefault();
            }

            if (string.IsNullOrEmpty(result.Label) && itemDto.Value != null)
            {
                result.Label = itemDto.Value.ToString();
            }

            return(result);
        }
Exemplo n.º 3
0
 public static AggregationItem ToAggregationItem(this searchDto.AggregationItem itemDto, string currentLanguage)
 {
     return(CatalogConverterInstance.ToAggregationItem(itemDto, currentLanguage));
 }