public static MonthlySaleTax GetInstance() { if (singleton == null) { singleton = new MonthlySaleTax(); } return(singleton); }
private void MonthlySaleTax_FormClosed(object sender, FormClosedEventArgs e) { singleton = null; }