public IEnumerable <StoreApp> GetNewApps()
        {
            var list = _portalService.GetNewApps();

            return
                (list.Select(
                     a =>
                     new StoreApp
            {
                Guid = a.Guid,
                Name = a.Name,
                Price = a.Price,
                Version = a.LatestVersion?.ToString()
            })
                 .ToList());
        }