Beispiel #1
0
 public IActionResult PathPhoto()
 {
     ServiceReference1.Service1 ph =
         new ServiceReference1.Service1();
     ServiceReference1.MyPhotos myPhotos = ph.GetPath();
     return(View(myPhotos.PathPhoto));
 }
Beispiel #2
0
 public IActionResult IndexPhoto()
 {
     ServiceReference1.Service1 ph =
         new ServiceReference1.Service1();
     ServiceReference1.MyPhotos myPhotos = ph.FindPhotoById();
     return(View(myPhotos.Photo));
 }
Beispiel #3
0
 public IActionResult Index()
 {
     ServiceReference1.Service1 ph =
         new ServiceReference1.Service1();
     ServiceReference1.MyPhotos myPhotos = ph.GetAllPhotos();
     return(View(myPhotos));
 }
Beispiel #4
0
 public IActionResult Index()
 {
     ServiceReference1.Service1 ph =
         new ServiceReference1.Service1();
     ServiceReference1.MyPhotos myPhotos = ph.FindUserById(1);
     return(View(User));
 }
Beispiel #5
0
 public System.Threading.Tasks.Task UpdatePhotoAsync(ServiceReference1.MyPhotos photo)
 {
     return(base.Channel.UpdatePhotoAsync(photo));
 }
Beispiel #6
0
 public System.Threading.Tasks.Task AddImageAsync(ServiceReference1.MyPhotos photo)
 {
     return(base.Channel.AddImageAsync(photo));
 }