Example #1
0
 /// <remarks/>
 public void AgregarFotoAGaleriaAsync(Foto Foto, int IdPropiedad) {
     this.AgregarFotoAGaleriaAsync(Foto, IdPropiedad, null);
 }
Example #2
0
 /// <remarks/>
 public void AgregarFotoAGaleriaAsync(Foto Foto, int IdPropiedad, object userState) {
     if ((this.AgregarFotoAGaleriaOperationCompleted == null)) {
         this.AgregarFotoAGaleriaOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAgregarFotoAGaleriaOperationCompleted);
     }
     this.InvokeAsync("AgregarFotoAGaleria", new object[] {
                 Foto,
                 IdPropiedad}, this.AgregarFotoAGaleriaOperationCompleted, userState);
 }
Example #3
0
 public bool AgregarFotoAGaleria(Foto Foto, int IdPropiedad) {
     object[] results = this.Invoke("AgregarFotoAGaleria", new object[] {
                 Foto,
                 IdPropiedad});
     return ((bool)(results[0]));
 }