public System.Threading.Tasks.Task <Mantenedores.wsActividadPago.CreatePaidResponse> CreatePaidAsync(string descripcion, int monto, int id_curso, System.DateTime fecha)
 {
     Mantenedores.wsActividadPago.CreatePaidRequest inValue = new Mantenedores.wsActividadPago.CreatePaidRequest();
     inValue.Body             = new Mantenedores.wsActividadPago.CreatePaidRequestBody();
     inValue.Body.descripcion = descripcion;
     inValue.Body.monto       = monto;
     inValue.Body.id_curso    = id_curso;
     inValue.Body.fecha       = fecha;
     return(((Mantenedores.wsActividadPago.wsActividadPagoSoap)(this)).CreatePaidAsync(inValue));
 }
 public bool CreatePaid(string descripcion, int monto, int id_curso, System.DateTime fecha)
 {
     Mantenedores.wsActividadPago.CreatePaidRequest inValue = new Mantenedores.wsActividadPago.CreatePaidRequest();
     inValue.Body             = new Mantenedores.wsActividadPago.CreatePaidRequestBody();
     inValue.Body.descripcion = descripcion;
     inValue.Body.monto       = monto;
     inValue.Body.id_curso    = id_curso;
     inValue.Body.fecha       = fecha;
     Mantenedores.wsActividadPago.CreatePaidResponse retVal = ((Mantenedores.wsActividadPago.wsActividadPagoSoap)(this)).CreatePaid(inValue);
     return(retVal.Body.CreatePaidResult);
 }
 System.Threading.Tasks.Task <Mantenedores.wsActividadPago.CreatePaidResponse> Mantenedores.wsActividadPago.wsActividadPagoSoap.CreatePaidAsync(Mantenedores.wsActividadPago.CreatePaidRequest request)
 {
     return(base.Channel.CreatePaidAsync(request));
 }
 Mantenedores.wsActividadPago.CreatePaidResponse Mantenedores.wsActividadPago.wsActividadPagoSoap.CreatePaid(Mantenedores.wsActividadPago.CreatePaidRequest request)
 {
     return(base.Channel.CreatePaid(request));
 }