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