public void SubmitComplaint(ComplaintForm form)
        {
            _support.CreateTicket(form.Handle, form.Complaint);

            _twitter.SendPrivateMessage(
                form.Handle,
                "Thanks for your feedback! Our support " +
                "staff will contact you shortly.");
        }