Esempio n. 1
0
 public bool Anular()
 {
     GI.DA.PagosData pd = new GI.DA.PagosData();
     return pd.Anular(this.IdPago);
 }
Esempio n. 2
0
 public bool Guardar()
 {
     GI.DA.PagosData pd = new GI.DA.PagosData();
     this.IdPago = pd.Guardar(false, this.FechaPago, this.IdContrato, this.Importe.Importe, this.Importe.Moneda.IdMoneda, this.MesCancelado, this.FechaAlta, this.AnioPagado);
     return IdPago > 0;
 }
Esempio n. 3
0
 public bool Actualizar()
 {
     GI.DA.PagosData pd = new GI.DA.PagosData();
     return pd.Actualizar(this.IdPago, false, this.FechaPago, this.IdContrato, this.Importe.Importe, this.Importe.Moneda.IdMoneda, this.MesCancelado, this.FechaAlta, this.AnioPagado);
 }