Example #1
0
 //Método getInstance()
 public static frmCustos getInstance()
 {
     if (instance == null)
     {
         instance = new frmCustos();
     }
     return instance;
 }
Example #2
0
 //Método FormClosing
 private void frmCustos_FormClosing(object sender, FormClosingEventArgs e)
 {
     instance = null;
 }