Example #1
0
 public static Personal_Reporte Get_instancia()
 {
     if (Instancias == null)
     {
         Instancias = new Personal_Reporte();
     }
     return(Instancias);
 }
Example #2
0
        private void btn_Guardar_Click(object sender, EventArgs e)
        {
            Personal_Reporte frm = Personal_Reporte.Get_instancia();

            frm._estado_ = _est_;
            frm._tipo_   = _tipo_;
            frm._texto_  = txt_Busqueda.Text;

            frm.ShowDialog();
        }