Exemplo n.º 1
0
        public bool ValidarDatos()
        {
            if (opcion == 1)
            {
                DateTime fechaa = DateTime.Now;
                objetoC = new C_Medidor(txtnumero.Text, txtlecturaactual.Text, txtmarca.Text, fechaa);
                return(true);
            }
            else if (opcion == 2)
            {
                // objetoC = new C_Medidor(numero, txtmarca.Text);
                string seleccion = ComboxMedidor.SelectedValue.ToString();

                //  datos.Id_Tabla1 = GUID.Parse(seleccion);

                objetoC = new C_Medidor("OC", idmedidor);


                return(true);
            }
            else
            {
                objetoC = new C_Medidor(txtnumero.Text);
                return(true);
            }
        }
Exemplo n.º 2
0
        public bool ValidarDatos()
        {
            if (opcion == 1)
            {
                objetoClienteC = new C_Cliente(TxtCedula.Text, TxtNombre.Text, TxtApellido.Text, CbxGenero.Text, Convert.ToInt32(CbxComunidad.SelectedValue), TxtTelefono.Text, TxtCelular.Text, TxtEmail.Text);

                //objetoClienteC=new C_Cliente(TxtCedula.Text,TxtNombre,)
                return(true);
            }
            else if (opcion == 2)
            {
                ObjetoMedidorC = new C_Medidor("OC", idcliente);
                return(true);
            }
            else if (opcion == 3)
            {
                objetoClienteC = new C_Cliente(idcliente);
                return(true);
            }
            else if (opcion == 4)
            {
                DateTime FechaInstalacion = DateTime.Now;
                ObjetoAsignarClienteC = new C_AsignarMedidor(TxtIdClienteAsignar.Text, CbxNumeroMedidorAsignar.SelectedValue.ToString(), CbxBasePagar.SelectedValue.ToString(), TxtCostoRegistro.Text, TxtNumCuota.Text, FechaInstalacion, TxtFechaLimitePago.Text, TxtValorPagado.Text);

                return(true);
            }
            else if (opcion == 5)
            {
                return(true);
            }
            else if (opcion == 7)
            {
                objetoClienteC = new C_Cliente("OC", TxtIdMedidorFinalizar.Text);
                return(true);
            }
            else
            {
                return(true);
            }
        }