public Boolean SwapPhotoPosition(Guid photoId1, Guid photoId2)
 {
     return(PhotoManagerService.SwapPhotoPosition(photoId1, photoId2));
 }
 public Boolean MovePhotoForward(Guid photoId)
 {
     return(PhotoManagerService.MovePhotoForward(photoId));
 }
 public Boolean ChangePhotoDescription(Guid photoId, String newDescription)
 {
     Thread.Sleep(2000);
     return(PhotoManagerService.ChangePhotoDescription(photoId, newDescription));
 }
 public Model.PhotoAlbum GetPhotoAlbumWithPhoto(Guid albumId)
 {
     return(PhotoManagerService.GetPhotoAlbumWithPhoto(albumId));
 }
 public Boolean MovePhotoBack(Guid photoId)
 {
     return(PhotoManagerService.MovePhotoBack(photoId));
 }
 public List <Model.Photo> GetAllPhotoForAlbum(Guid albumId)
 {
     return(PhotoManagerService.GetAllPhotoForAlbum(albumId).ToList());
 }
 public List <Model.PhotoAlbum> GetAll(Guid userId)
 {
     return(PhotoManagerService.GetAll(userId).ToList());
 }
 public System.IO.Stream GetImage(string imageFileId)
 {
     return(PhotoManagerService.GetImage(imageFileId));
 }
 public bool AddPhotoToAlbum(string fileName, String originalFileName, Guid albumId)
 {
     return(PhotoManagerService.AddPhotoToAlbum(fileName, originalFileName, albumId));
 }
예제 #10
0
 public bool CreateOrUpdatePhotoAlbum(Model.PhotoAlbum album)
 {
     return(PhotoManagerService.CreateOrUpdatePhotoAlbum(album));
 }