public void TestGetProfilePhotosData()
        {
            List<ProfilePhoto> results = new List<ProfilePhoto>();
            ProfilePhoto request = new ProfilePhoto { UserID = 137179126684623 };

            LogHelper.LogInformation("Here we go...");
            try
            {
                var dmgr = new DataManager();
                results = dmgr.GetProfilePhotosById(request);
            }
            catch (Exception ex)
            {
                LogHelper.LogError(ex, "What Happened?");
                results = null;
            }

            Assert.IsTrue(results != null && results.Count > 0);
        }