Ejemplo n.º 1
0
        public Photos GetPhotos(DateTimeOffset lastUpdate, IEnumerable <long> ids)
        {
            Photos photos;

            using (PricelistServiceClient webService = GetWebService())
            {
                SecurityInfo securityInfo = CreateSecurityInfo();
                photos = webService.GetPhotos(securityInfo, lastUpdate, ids.ToArray());
                webService.Close();
            }

            return(photos);
        }