Move refreshing employee view above the messagebox for adding.

This commit is contained in:
kougyoku 2019-10-22 08:00:43 -07:00
parent 59ae663c7b
commit deb2bc0a0c
1 changed files with 1 additions and 1 deletions

View File

@ -74,9 +74,9 @@ namespace QueueSys
cbNumBags.Text = "";
tbEmployeeName.Text = "";
RefreshEmployeeView();
MessageBox.Show("Customer has been added!", "Queue System", MessageBoxButtons.OK, MessageBoxIcon.Information);
RefreshEmployeeView();
}
private void RefreshEmployeeView()