private void BtnFareInfo_Click(object sender, EventArgs e)
        {
            FareInfo fareInfo = new FareInfo(this.employee);

            fareInfo.Visible = true;
            this.Visible     = false;
        }
Example #2
0
        private void RefreshMethod()
        {
            FareInfo fareInfo = new FareInfo(this.employee);

            fareInfo.Visible = true;
            this.Visible     = false;
        }