public ActionResult <ContactForm> Create(ContactForm cf)
        {
            _formsService.Create(cf);

            return(CreatedAtRoute("GetForm", new { id = cf.Id.ToString() }, cf));
        }