/// <summary>
 ///  This method will call the UserInfoResource Resource class method for saving the company logo
 /// Added By Parul Jain
 /// </summary>
 /// <param name="objTributeParam">A object which contain the company logo which wants to save</param>
 public void SaveImage(UserBusiness objBusinessUser)
 {
     try
     {
         UserInfoResource objUser = new UserInfoResource();
         objUser.SaveImage(objBusinessUser);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }