コード例 #1
0
 /// <summary>
 /// Removes a photo of this reservation.
 /// </summary>
 /// <param name="photo">The photo to be removed.</param>
 /// <returns>Returns true when the photo has been successfully removed, and false when it has failed to remove the photo.</returns>
 public bool RemovePhoto(Photo photo)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 /// <summary>
 /// Uploads a photo of this reservation.
 /// </summary>
 /// <param name="photo">The photo to be uploaded.</param>
 /// <returns>Returns true when the photo has been successfully uploaded, and false when it has failed to upload the photo.</returns>
 public bool UploadPhoto(Photo photo)
 {
     throw new NotImplementedException();
 }