Ejemplo n.º 1
0
 private void InicializarContrato(string unNumeroDeContrato)
 {
     this.NumeroContrato = unNumeroDeContrato;
     InicializarCliente();
     InicializarPlan();
     this.Vehiculo        = new Vehiculo();
     this.Vivienda        = new Vivienda();
     this.Prima           = PrimaFactory.CrearPrimaSeguroDEVida(0, this.Cliente.Fecha, string.Empty, string.Empty);
     this.DetalleContrato = DetalleContrato.CrearDetalleDeContrato();
 }
Ejemplo n.º 2
0
 private void SeguroDeVida()
 {
     this.Prima = PrimaFactory.CrearPrimaSeguroDEVida(this.Plan.PrimaBase, this.Cliente.Fecha, this.Cliente.Sexo, this.Cliente.EstadoCivil);
 }
Ejemplo n.º 3
0
 private void NingunSeguro()
 {
     this.Prima = PrimaFactory.CrearPrimaSeguroDEVida(0, DateTime.Today, string.Empty, string.Empty);
 }