Beispiel #1
0
 public void EfetivarPropostaAsync(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Proposta proposta, object userState)
 {
     if ((this.onBeginEfetivarPropostaDelegate == null))
     {
         this.onBeginEfetivarPropostaDelegate = new BeginOperationDelegate(this.OnBeginEfetivarProposta);
     }
     if ((this.onEndEfetivarPropostaDelegate == null))
     {
         this.onEndEfetivarPropostaDelegate = new EndOperationDelegate(this.OnEndEfetivarProposta);
     }
     if ((this.onEfetivarPropostaCompletedDelegate == null))
     {
         this.onEfetivarPropostaCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnEfetivarPropostaCompleted);
     }
     base.InvokeAsync(this.onBeginEfetivarPropostaDelegate, new object[] {
         proposta
     }, this.onEndEfetivarPropostaDelegate, this.onEfetivarPropostaCompletedDelegate, userState);
 }
Beispiel #2
0
 public void EfetivarPropostaAsync(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Proposta proposta)
 {
     this.EfetivarPropostaAsync(proposta, null);
 }
Beispiel #3
0
 public System.IAsyncResult BeginEfetivarProposta(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Proposta proposta, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginEfetivarProposta(proposta, callback, asyncState));
 }
Beispiel #4
0
 private System.IAsyncResult OnBeginEfetivarProposta(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     WCFVideos.WinUI.ServiceDeGestaoDeCredito.Proposta proposta = ((WCFVideos.WinUI.ServiceDeGestaoDeCredito.Proposta)(inValues[0]));
     return(this.BeginEfetivarProposta(proposta, callback, asyncState));
 }
Beispiel #5
0
 public void EfetivarProposta(WCFVideos.WinUI.ServiceDeGestaoDeCredito.Proposta proposta)
 {
     base.Channel.EfetivarProposta(proposta);
 }