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

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

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