private void cargarLideres(Miembro miembro) { ManejadorDeLideresDeCelula manejadorDeLideresDeCelula = new ManejadorDeLideresDeCelula(); StoreLideresDirectos.Cargar(manejadorDeLideresDeCelula.ObtenerLideresDirectosPorMiembro(miembro)); StoreLiderzagoDirecto.Cargar(manejadorDeLideresDeCelula.ObtenerLiderazgoDirectoPorMiembro(miembro)); StoreLiderzagoIndirecto.Cargar(manejadorDeLideresDeCelula.ObtenerLiderazgoIndirectoPorMiembro(miembro)); }
void ICatalogo.Mostrar(int id) { Miembro entidad = (from o in SesionActual.Instance.getContexto <IglesiaEntities>().Miembro where o.MiembroId == id select o).FirstOrDefault(); registroId.Value = entidad.MiembroId.ToString(); registroEmail.Value = entidad.Email; registroPrimerNombre.Value = entidad.Primer_Nombre; registroSegundoNombre.Value = entidad.Segundo_Nombre; registroApellidoPaterno.Value = entidad.Apellido_Paterno; registroApellidoMaterno.Value = entidad.Apellido_Materno; manejadorDeLideresdeCelulas = new ManejadorDeLideresDeCelula(); Buscador.CargarListado(manejadorDeLideresdeCelulas.ObtenerLiderazgoDeCelulas(id)); }
public void ObtenerLideresDeCelulaClick() { int celulaSeleccionada; if (int.TryParse(cboCelula.SelectedItem.Value, out celulaSeleccionada)) { ManejadorDeLideresDeCelula manejador = new ManejadorDeLideresDeCelula(); StoreLideres.Cargar(manejador.ObtenerLideresDeCelulaPorRed(celulaSeleccionada)); } else { X.Msg.Alert(Generales.nickNameDeLaApp, Resources.Literales.CelulaYFechaNecesarias).Show(); } }
void ICatalogo.Guardar(int id, RegistrosHelper.ListaDeRegistrosDeDatos listaDeRegistrosDeDatos) { manejadorDeLideresdeCelulas = new ManejadorDeLideresDeCelula(); manejadorDeLideresdeCelulas.GuardarLiderzagoDeCelulas(id, listaDeRegistrosDeDatos.Obtener(Buscador.GridDeListadoDeObjetos.ClientID)); this.RestablecerCacheDeSesion(); }