public void Iniciar() { //La persona this.persona = FabricaEntidades.ObtenerPersona(); this.persona.Id = 11; this.persona2 = FabricaEntidades.ObtenerPersona(); this.persona2.Id = 12; this.persona3 = FabricaEntidades.ObtenerPersona(); this.persona3.Id = 13; this.persona4 = FabricaEntidades.ObtenerPersona(); this.persona4.Id = 14; //Dos implementos distintos this.implemento = (Implemento)FabricaEntidades.ObtenerImplemento(); this.implemento.Id = 1; this.implemento.Precio_Implemento = 4500; this.implemento2 = (Implemento)FabricaEntidades.ObtenerImplemento(); this.implemento2.Id = 5; this.implemento2.Precio_Implemento = 3000; //Eventos this.evento = (DominioSKD.Entidades.Modulo9.Evento)FabricaEntidades.ObtenerEvento(); this.evento.Id = 1; this.evento.Costo = 0; this.evento2 = (DominioSKD.Entidades.Modulo9.Evento)FabricaEntidades.ObtenerEvento(); this.evento2.Id = 2; this.evento2.Costo = 2000; //Dos matriculas distintas this.matricula = (Matricula)FabricaEntidades.ObtenerMatricula(); this.matricula.Id = 1; this.matricula.Costo = 5000; this.matricula2 = (Matricula)FabricaEntidades.ObtenerMatricula(); this.matricula2.Id = 2; this.matricula2.Costo = 4500; //Iniciamos los atributos para la prueba de vacio this.PruebaComandoVacio = FabricaComandos.CrearComandoeliminarItem(); this.PruebaComandoVacio2 = FabricaComandos.CrearComandoeliminarItem(1, this.implemento, this.persona); this.pruebaComandoVacio3 = (ComandoeliminarItem)FabricaComandos.CrearComandoeliminarItem(); this.pruebaComandoVacio4 = (ComandoeliminarItem) FabricaComandos.CrearComandoeliminarItem(1, this.implemento, this.persona); //valor para Eliminar un Implemento this.pruebaComandoImplemento1 = FabricaComandos.CrearComandoeliminarItem(1, this.implemento, this.persona); this.pruebaComandoImplemento2 =FabricaComandos.CrearComandoeliminarItem(1, this.implemento2, this.persona); //valor para Eliminar un Evento this.pruebaComandoEvento1 = FabricaComandos.CrearComandoeliminarItem( 3, this.evento, this.persona2); this.pruebaComandoEvento2 = FabricaComandos.CrearComandoeliminarItem( 3, this.evento2, this.persona2); //valor para Eliminar una Matricula this.pruebaComandoMatricula1 = FabricaComandos.CrearComandoeliminarItem(2, this.matricula, this.persona3); this.pruebaComandoMatricula2 = FabricaComandos.CrearComandoeliminarItem(2, this.matricula2, this.persona3); //Comandos que eliminaran en la prueba de la persona4 this.pruebaComandoImplemento3 =FabricaComandos.CrearComandoeliminarItem(1, this.implemento, this.persona4); this.pruebaComandoEvento3 = FabricaComandos.CrearComandoeliminarItem(3, this.evento, this.persona4); this.pruebaComandoMatricula3 = FabricaComandos.CrearComandoeliminarItem(2, this.matricula, this.persona4); }
public void Limpiar() { this.PruebaComandoVacio = null; this.PruebaComandoVacio2 = null; this.pruebaComandoVacio3 = null; this.pruebaComandoVacio4 = null; this.pruebaComandoImplemento1 = null; this.pruebaComandoImplemento2 = null; this.pruebaComandoImplemento3 = null; this.pruebaComandoAgregarImplemento = null; this.pruebaComandoEvento1 = null; this.pruebaComandoEvento2 = null; this.pruebaComandoEvento3 = null; this.pruebaComandoAgregarEvento = null; this.pruebaComandoMatricula1 = null; this.pruebaComandoMatricula2 = null; this.pruebaComandoMatricula3 = null; this.pruebaComandoAgregarMatricula = null; this.evento = null; this.evento2 = null; this.persona = null; this.persona2 = null; this.persona3 = null; this.persona4 = null; this.implemento = null; this.implemento2 = null; this.matricula = null; this.matricula2 = null; }