//[ScriptMethod(UseHttpGet = false, ResponseFormat = ResponseFormat.Json)]
 public int GetFeedCountByProfileIdAndUserId(string UserId, string ProfileIds)
 {
     try
     {
         return(objTwitterMessageRepository.GetMessageCountByProfileIdAndUserId(Guid.Parse(UserId), ProfileIds));
     }
     catch (Exception ex)
     {
         return(0);
     }
 }