/// <summary>
        /// Saves a new form record from the specified "Contact us" form data.
        /// </summary>
        /// <param name="message">The "Contact us" form data.</param>
        public void InsertContactUsFormItem(MessageModel message)
        {
            var item = new DancingGoatMvcContactUsItem
            {
                UserFirstName = message.FirstName,
                UserLastName = message.LastName,
                UserEmail = message.Email,
                UserMessage = message.MessageText,
            };

            item.Insert();
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="CMS.OnlineForms.Types.DancingGoatMvcContactUsItem+DancingGoatMvcContactUsItemFields" /> class with the specified content item of type DancingGoatMvcContactUsItem.
 /// </summary>
 /// <param name="instance">The content item of type DancingGoatMvcContactUsItem that is a target of the extended API.</param>
 public DancingGoatMvcContactUsItemFields(DancingGoatMvcContactUsItem instance)
 {
     mInstance = instance;
 }
			/// <summary>
			/// Initializes a new instance of the <see cref="CMS.OnlineForms.Types.DancingGoatMvcContactUsItem+DancingGoatMvcContactUsItemFields" /> class with the specified content item of type DancingGoatMvcContactUsItem.
			/// </summary>
			/// <param name="instance">The content item of type DancingGoatMvcContactUsItem that is a target of the extended API.</param>
			public DancingGoatMvcContactUsItemFields(DancingGoatMvcContactUsItem instance)
			{
				mInstance = instance;
			}