示例#1
0
 public InteresLote(ILoteComponent component, IStrategyInteres lotificadoraInteres, int tiempoDeFinanciamiento)
 {
     this.component              = component;
     this.lotificadoraInteres    = lotificadoraInteres;
     this.tiempoDeFinanciamiento = tiempoDeFinanciamiento;
 }
示例#2
0
 public ReservaLote(ILoteComponent component)
 {
     this.component = component;
 }
示例#3
0
 public EngancheLote(ILoteComponent lote, double cantidadEnganche)
 {
     this.lote             = lote;
     this.cantidadEnganche = cantidadEnganche;
 }
示例#4
0
 public DescuentoLote(ILoteComponent component, IStrategyDescuento lotificadoraDescuento)
 {
     this.component             = component;
     this.lotificadoraDescuento = lotificadoraDescuento;
 }
示例#5
0
 public DescuentoLote(ILoteComponent lote, double cantidadDescuento, double porcentajeDescuento)
 {
     this.lote = lote;
     this.cantidadDescuento   = cantidadDescuento;
     this.porcentajeDescuento = porcentajeDescuento;
 }
示例#6
0
 public PromocionLote(ILoteComponent component)
 {
     this.component = component;
 }
示例#7
0
 public EngancheLote(ILoteComponent component)
 {
     this.component = component;
 }
示例#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;
 }