public GymCustomer(string firstName, string lastName, int trainerId)
        {
            GymCustomerFirstName = firstName;
            GymCustomerLastName  = lastName;

            GymCustomerTableAdapter customerTableAdapter = new GymCustomerTableAdapter();

            customerTableAdapter.Insert(GymCustomerFirstName, GymCustomerLastName, trainerId);
        }