public string GetRetweetStatsCountByProfileIdAndUserId(string profileId, Guid userid, int days)
        {
            TwitterMessageRepository objretwt = new TwitterMessageRepository();

            int strcount = 0;

            try
            {
                strcount = objretwt.GetRetweetStatsCountByProfileIdAndUserId(userid, profileId, days);
            }
            catch (Exception Err)
            {
                strcount = 0;
                Console.Write(Err.StackTrace);
            }
            return(strcount.ToString());
        }