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(); }
private void SeguroDeVida() { this.Prima = PrimaFactory.CrearPrimaSeguroDEVida(this.Plan.PrimaBase, this.Cliente.Fecha, this.Cliente.Sexo, this.Cliente.EstadoCivil); }
private void NingunSeguro() { this.Prima = PrimaFactory.CrearPrimaSeguroDEVida(0, DateTime.Today, string.Empty, string.Empty); }