protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); // Set our view from the "main" layout resource SetContentView(Resource.Layout.Main); // Get our button from the layout resource, // and attach an event to it Button btLogin = FindViewById <Button>(Resource.Id.btLogin); EditText txUsuario = FindViewById <EditText>(Resource.Id.txUsuario); EditText txPassword = FindViewById <EditText>(Resource.Id.txPassword); btLogin.Click += delegate { string email = txUsuario.Text.Trim(); if (!email.Contains("@moranvilla.com.ar")) { email += "@moranvilla.com.ar"; } string password = txPassword.Text.Trim(); if (email == string.Empty || password == string.Empty) { //no esta completo el login } InmobiliariaService.Service ws = new InmobiliariaService.Service(); Vendedor vendedor = ws.Login(email, password); if (vendedor != null) { Intent intent = new Intent(this, typeof(HomeActivity)); intent.PutExtra("Id", vendedor.Id); intent.PutExtra("Nombre", vendedor.Nombre); StartActivity(intent); Finish(); } }; }
private void BtGuardar_Click(object sender, EventArgs e) { Interesado interesado = new Interesado(); interesado.Nombre = txNombre.Text; interesado.Apellido = txApellido.Text; interesado.Email = txEmail.Text; interesado.Disponible = true; interesado.Telefono = txTelefono.Text; interesado.Observaciones = txObservaciones.Text; interesado.MontoHasta = Convert.ToDecimal(txMonto.Text); if (spnTipoMoneda.SelectedItem.ToString() == "Pesos") { interesado.TipoDeMoneda = 1; } else { interesado.TipoDeMoneda = 2; } if (spnTipoInmueble.SelectedItem.ToString() == "Terreno") { interesado.TipoDeInmueble = 1; } else if (spnTipoInmueble.SelectedItem.ToString() == "Departamento") { interesado.TipoDeInmueble = 2; } else if (spnTipoInmueble.SelectedItem.ToString() == "Casa") { interesado.TipoDeInmueble = 3; } else if (spnTipoInmueble.SelectedItem.ToString() == "Quinta") { interesado.TipoDeInmueble = 4; } else if (spnTipoInmueble.SelectedItem.ToString() == "Local") { interesado.TipoDeInmueble = 5; } else if (spnTipoInmueble.SelectedItem.ToString() == "Fondo de Comercio") { interesado.TipoDeInmueble = 6; } else if (spnTipoInmueble.SelectedItem.ToString() == "Oficina") { interesado.TipoDeInmueble = 7; } else if (spnTipoInmueble.SelectedItem.ToString() == "Galpon") { interesado.TipoDeInmueble = 8; } if (spnTipoOperacion.SelectedItem.ToString() == "Venta") { interesado.TipoDeOperacion = 1; } else { interesado.TipoDeOperacion = 2; } if (spnAmbientes.SelectedItem.ToString() == "Monoambiente") { interesado.Ambientes = 1; } else if (spnAmbientes.SelectedItem.ToString() == "Dos Ambiente") { interesado.Ambientes = 2; } else if (spnAmbientes.SelectedItem.ToString() == "Tres Ambientes") { interesado.Ambientes = 3; } else if (spnAmbientes.SelectedItem.ToString() == "Cuatro Ambientes") { interesado.Ambientes = 4; } else if (spnAmbientes.SelectedItem.ToString() == "Cinco o más Ambientes") { interesado.Ambientes = 5; } interesado.MontoDesde = 0m; InmobiliariaService.Service ws = new InmobiliariaService.Service(); ws.GuardarInteresadoAsync(interesado); Toast.MakeText(this, "Se está guardando el interesado!", ToastLength.Long); this.Finish(); }