Esempio n. 1
0
        public PhotoInfo GetPhoto(SecurityInfo securityInfo, long id)
        {
            PhotoInfo photoInfo = null;

            if (ValidatePassword(securityInfo))
            {
                IShapingPhotos shaping = new ShapingPhotos(dataService, optionService);
                photoInfo = shaping.GetItem(id);
            }

            return(photoInfo);
        }