Example #1
0
 /// <remarks/>
 public void IncluiLancamentoAsync(TLancamentos Lancamento) {
     this.IncluiLancamentoAsync(Lancamento, null);
 }
Example #2
0
 /// <remarks/>
 public void IncluiLancamentoAsync(TLancamentos Lancamento, object userState) {
     if ((this.IncluiLancamentoOperationCompleted == null)) {
         this.IncluiLancamentoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnIncluiLancamentoOperationCompleted);
     }
     this.InvokeAsync("IncluiLancamento", new object[] {
                 Lancamento}, this.IncluiLancamentoOperationCompleted, userState);
 }
Example #3
0
 public string IncluiLancamento(TLancamentos Lancamento) {
     object[] results = this.Invoke("IncluiLancamento", new object[] {
                 Lancamento});
     return ((string)(results[0]));
 }