public PhotoGalleryImage Add(PhotoGalleryImage photoGalleryImage)
        {
            photoGalleryImage.Id = _photoGalleryImages.Max(i => i.Id) + 1;
            _photoGalleryImages.Add(photoGalleryImage);

            return(photoGalleryImage);
        }
 public PhotoGalleryImage Update(PhotoGalleryImage photoGalleryImage)
 {
     throw new NotImplementedException();
 }