Beispiel #1
0
        public frm_Anexo(ObjectId id_infração, string fileName, string newFileName)
        {
            InitializeComponent();
            instancia = this;

            Data_Controller.Add_Anexo(id_infração, fileName, newFileName);
        }
Beispiel #2
0
        public frm_Anexo(ObjectId id_infração, string frase)
        {
            InitializeComponent();
            instancia       = this;
            lbl_Titulo.Text = frase;

            Data_Controller.Read_Anexos(id_infração);
        }
Beispiel #3
0
 private void btn_Fechar_Click(object sender, EventArgs e)
 {
     instancia = null;
     Close();
 }