public ucEditEmployee(long parameter) : this()
        {
            // Set the parameter ID, then load the fields
            ContactCollection contacts = new ContactCollection("iContactID = " + parameter);

            _contact = null;
            if (contacts.Count > 0)
            {
                _contact = contacts[0];
            }
        }
 public ucEditEmployee() : base()
 {
     // Don't allow this control to load - there was no employee passed
     _contact = null;
 }