public void TestGetProfilePhotoTypesLogic()
        {
            List<ProfilePhotoType> results = new List<ProfilePhotoType>();

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

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