/// <summary>
        /// Get Contact By Zip Code
        /// </summary>
        /// <param name="zipCode"></param>
        /// <returns></returns>
        public List <Contact> GetContactByZipCode(string zipCode)
        {
            List <Contact> contacts = new List <Contact>();

            try
            {
                contacts = _iContactDAL.GetContactByZipCode(zipCode);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(contacts);
        }