/// <summary>
        /// This method will call the Gift Resource access class method to get the Image list for the passed Tribute Type
        /// Added By Parul Jain
        /// </summary>
        /// <returns>This method will return the Gifts object which contain the list of Image</returns>
        public List<GiftImage> GetImage()
        {
            try
            {
                UserInfoResource objUser = new UserInfoResource();

                return objUser.GetImage();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }