Esempio n. 1
0
 public InteresLote(ILoteComponent component, IStrategyInteres lotificadoraInteres, int tiempoDeFinanciamiento)
 {
     this.component              = component;
     this.lotificadoraInteres    = lotificadoraInteres;
     this.tiempoDeFinanciamiento = tiempoDeFinanciamiento;
 }
Esempio n. 2
0
 public ReservaLote(ILoteComponent component)
 {
     this.component = component;
 }
Esempio n. 3
0
 public EngancheLote(ILoteComponent lote, double cantidadEnganche)
 {
     this.lote             = lote;
     this.cantidadEnganche = cantidadEnganche;
 }
Esempio n. 4
0
 public DescuentoLote(ILoteComponent component, IStrategyDescuento lotificadoraDescuento)
 {
     this.component             = component;
     this.lotificadoraDescuento = lotificadoraDescuento;
 }
Esempio n. 5
0
 public DescuentoLote(ILoteComponent lote, double cantidadDescuento, double porcentajeDescuento)
 {
     this.lote = lote;
     this.cantidadDescuento   = cantidadDescuento;
     this.porcentajeDescuento = porcentajeDescuento;
 }
Esempio n. 6
0
 public PromocionLote(ILoteComponent component)
 {
     this.component = component;
 }
Esempio n. 7
0
 public EngancheLote(ILoteComponent component)
 {
     this.component = component;
 }
Esempio n. 8
0
 //public InteresLote(ILoteComponent lote, IStrategyInteres lotificadoraInteres, int tiempoDeFinanciamiento)
 //{
 //    this.lote = lote;
 //    this.lotificadoraInteres = lotificadoraInteres;
 //    this.tiempoDeFinanciamiento = tiempoDeFinanciamiento;
 //}
 public InteresLote(ILoteComponent lote, double tasaInteres, int tiempoDeFinanciamiento)
 {
     this.lote                   = lote;
     this.tasaInteres            = tasaInteres;
     this.tiempoDeFinanciamiento = tiempoDeFinanciamiento;
 }