ATMLCommonLibrary.controls.MailingAddressControl.MailingAddressControl C# (CSharp) Method

MailingAddressControl() public method

public MailingAddressControl ( ) : System
return System
        public MailingAddressControl()
        {
            InitializeComponent();

            cbMailingCountry.DisplayMember = LuCountryBean._COUNTRY_NAME;
            cbMailingCountry.ValueMember = LuCountryBean._COUNTRY_NAME;
            cbMailingState.DisplayMember = LuStateBean._STATE_NAME;
            cbMailingState.ValueMember = LuStateBean._STATE_CODE;
            if (!this.IsInDesignMode())
            {
                Cache countryCache = CacheManager.getCache( LuCountryBean._TABLE_NAME );
                countryCache.loadComboBox( cbMailingCountry );
            }
        }