/// <summary>
        /// Handles the Click event of the btnLoneDetails control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        /// <remarks></remarks>
        private void btnLoneDetails_Click(object sender, EventArgs e)
        {
            this.Close();
            LoanTypes objLT = new LoanTypes(localEmpId, localEmpName, locationType);

            objLT.Show();
        }
        /// <summary>
        /// Handles the Click event of the btnBack control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
        /// <remarks></remarks>
        private void btnBack_Click(object sender, EventArgs e)
        {
            this.Close();
            LoanTypes lt = new LoanTypes(LocalEmpId, localEmpName, locationType); // redirecting to loanTypes  form

            lt.Show();
        }