private void GetContactInformation()
        {
            var id = Convert.ToInt32(Request.QueryString["Id"]);

            var contactInformation = _contactInformationService.GetContactInformationById(id);

            firstNameTxt.Value    = contactInformation.FirstName;
            lastNameTxt.Value     = contactInformation.LastName;
            AddressTxt.Value      = contactInformation.Address;
            emailAddressTxt.Value = contactInformation.EmailAddress;
            phoneNumberTxt.Value  = contactInformation.PhoneNumber.ToString();
            statusChkBox.Checked  = contactInformation.IsActive;
        }