//==================================================================== //==================================================================== // GetInstance //==================================================================== public static BM_Sintese getInstance() { lock (objLock) { if (instancia == null) { instancia = new BM_Sintese(); } return(instancia); } }
//==================================================================== //==================================================================== // Executar sintese //==================================================================== private void executarSintese(BM_Comando.Sintese _sintese) { BM_Sintese.getInstance().Executar(_sintese); }