private void Cargar_Listados() { DataTable Dt = new DataTable(); Datos_Cargo Funcion_C = new Datos_Cargo(); Funcion_C.Mostrar_Cargo(ref Dt); this.cbx_Cargo.DataSource = Dt; this.cbx_Cargo.DisplayMember = "Cargo"; DataTable Dt2 = new DataTable(); Datos_CC Funcion_CC = new Datos_CC(); Funcion_CC.Mostrar_CC(ref Dt2); this.cbx_CC.DataSource = Dt2; this.cbx_CC.DisplayMember = "Centro_de_Costo"; DataTable Dt3 = new DataTable(); Datos_Super Funcion_S = new Datos_Super(); Funcion_S.Mostrar_Supervisor(ref Dt3); this.cbx_Supervisor.DataSource = Dt3; this.cbx_Supervisor.DisplayMember = "Nombre_Completo"; }
private void Mostrar_CC() { DataTable Dt = new DataTable(); Datos_CC Funcion = new Datos_CC(); Funcion.Mostrar_CC(ref Dt); this.DGV_CC.DataSource = Dt; Logica_DataTable.MultiLinea(ref this.DGV_CC); }
private void Buscar_CC() { DataTable Dt = new DataTable(); Datos_CC Funcion = new Datos_CC(); Funcion.Buscar_CC(ref Dt, this.txt_CC.Text); this.DGV_CC.DataSource = Dt; Logica_DataTable.MultiLinea(ref this.DGV_CC); }
private void Insertar_CC() { if (string.IsNullOrEmpty(this.txt_CC.Text) == false) { Logica_CC Parametros = new Logica_CC(); Datos_CC Funcion = new Datos_CC(); Parametros.Centro_de_Costo = this.txt_CC.Text; if (Funcion.Insertar_CC(Parametros) == true) { this.btn_Volver_Click(this, null); } } else { MessageBox.Show("Agregar un Centro de Costo", "Falta el Centro de Costo...", MessageBoxButtons.OK, MessageBoxIcon.Error); } }