private void PunchOutBnt_Click(object sender, EventArgs e)
 {
     CRySTALTimeCard.TimeCardServiceClient tcc = new CRySTALClient.CRySTALTimeCard.TimeCardServiceClient();
     if (tcc.StampShiftEnd(this.sessionID) == false)
     {
         MessageBox.Show("Unable to end shift. No shift in progress. Please see a manager if you feel this is an error");
     }
     tcc.Close();
 }