public static VMEmployee GetInstance() { if (employeeObject == null) { employeeObject = new VMEmployee(); } return(employeeObject); }
public MainWindow() { InitializeComponent(); vmEmp = VMEmployee.GetInstance(); DataContext = vmEmp; editForm = null; error = vmEmp.ReadData((short)VMEmployee.RequestType.SELECT_ALL); ChangeMessageColor(error); }