Towne's Community Lending Program

Saturday, December 10, 2022
Why Homeownership Matters

Owning a home has long been considered the American Dream. Statistics show that no matter the generation, Americans overwhelmingly believe that homeownership is important. Whether personal, emotional, or financial, there are many reasons why homeownership matters.

Here are just a few:
 
  • Helps to Build Equity
  • Appreciates Over Time
  • Provides Stability for You and Your Family
  • Allows You to Customize Your Home
  • Benefits the Community
Reasons to Use a Local Lender

When you’re searching for home financing, it can be difficult to know where to start. Your biggest investment should be an exceptional experience. So why not choose exceptional service? We'll hold your hand throughout the entire loan process because we understand it can be both exciting and overwhelming. Having our loan officers' guidance can make all of the difference.

There are many advantages when using us as your lender:
 
  • Our operations are local.
  • You’ll receive a personalized experience.
  • We have established relationships with local real estate professionals, utilize local appraisers, and have extensive knowledge about the local market. .
  • Meeting your closing date is our number one priority.
  • We’re proud to give back to the communities we serve through our volunteer and fundraising efforts.
  • We have an incentive to provide excellent service because we want our clients to be a source of referrals for future business.
Take Advantage of Our New Community Lending Program!

Buyers in eligible, underserved communities could receive up to a 2% pricing improvement, up to $4,500, through our Community Lending Program.
Contact us to learn more about this unique program and to determine if your property qualifies!


//-------------------------------------------------------------------------------------------------- // // // This code was generated by code generator tool. // // To customize the code use your own partial class. For more info about how to use and customize // the generated code see the documentation at https://docs.xperience.io/. // // //-------------------------------------------------------------------------------------------------- using System; using System.Collections.Generic; using CMS; using CMS.Base; using CMS.Helpers; using CMS.DataEngine; using CMS.OnlineForms; using CMS.OnlineForms.Types; [assembly: RegisterBizForm(SoutheastExpansionItem.CLASS_NAME, typeof(SoutheastExpansionItem))] namespace CMS.OnlineForms.Types { /// /// Represents a content item of type SoutheastExpansionItem. /// public partial class SoutheastExpansionItem : BizFormItem { #region "Constants and variables" /// /// The name of the data class. /// public const string CLASS_NAME = "BizForm.SoutheastExpansion"; /// /// The instance of the class that provides extended API for working with SoutheastExpansionItem fields. /// private readonly SoutheastExpansionItemFields mFields; #endregion #region "Properties" /// /// FirstName. /// [DatabaseField] public string FirstName { get { return ValidationHelper.GetString(GetValue("FirstName"), @""); } set { SetValue("FirstName", value); } } /// /// LastName. /// [DatabaseField] public string LastName { get { return ValidationHelper.GetString(GetValue("LastName"), @""); } set { SetValue("LastName", value); } } /// /// PhoneNumber. /// [DatabaseField] public int PhoneNumber { get { return ValidationHelper.GetInteger(GetValue("PhoneNumber"), 0); } set { SetValue("PhoneNumber", value); } } /// /// EmailInput. /// [DatabaseField] public string EmailInput { get { return ValidationHelper.GetString(GetValue("EmailInput"), @""); } set { SetValue("EmailInput", value); } } /// /// I am a. /// [DatabaseField] public string DropDown { get { return ValidationHelper.GetString(GetValue("DropDown"), @""); } set { SetValue("DropDown", value); } } /// /// Message. /// [DatabaseField] public string Message { get { return ValidationHelper.GetString(GetValue("Message"), @""); } set { SetValue("Message", value); } } /// /// Gets an object that provides extended API for working with SoutheastExpansionItem fields. /// [RegisterProperty] public SoutheastExpansionItemFields Fields { get { return mFields; } } /// /// Provides extended API for working with SoutheastExpansionItem fields. /// [RegisterAllProperties] public partial class SoutheastExpansionItemFields : AbstractHierarchicalObject { /// /// The content item of type SoutheastExpansionItem that is a target of the extended API. /// private readonly SoutheastExpansionItem mInstance; /// /// Initializes a new instance of the class with the specified content item of type SoutheastExpansionItem. /// /// The content item of type SoutheastExpansionItem that is a target of the extended API. public SoutheastExpansionItemFields(SoutheastExpansionItem instance) { mInstance = instance; } /// /// FirstName. /// public string FirstName { get { return mInstance.FirstName; } set { mInstance.FirstName = value; } } /// /// LastName. /// public string LastName { get { return mInstance.LastName; } set { mInstance.LastName = value; } } /// /// PhoneNumber. /// public int PhoneNumber { get { return mInstance.PhoneNumber; } set { mInstance.PhoneNumber = value; } } /// /// EmailInput. /// public string EmailInput { get { return mInstance.EmailInput; } set { mInstance.EmailInput = value; } } /// /// I am a. /// public string DropDown { get { return mInstance.DropDown; } set { mInstance.DropDown = value; } } /// /// Message. /// public string Message { get { return mInstance.Message; } set { mInstance.Message = value; } } } #endregion #region "Constructors" /// /// Initializes a new instance of the class. /// public SoutheastExpansionItem() : base(CLASS_NAME) { mFields = new SoutheastExpansionItemFields(this); } #endregion } }