public override string GetResult(ProfileInfo info)
        {
            string result = WEB_DATA_LIST_BEGIN;
            int    photoWithoutPeopleCount = info.GetPhotosWithoutPeopleCount();

            result = string.Concat(
                result,
                photoWithoutPeopleCount.ToString(),
                ",",
                (info.InstagramInformation.Count - photoWithoutPeopleCount).ToString());
            return(string.Concat(result, WEB_DATA_LIST_END));
        }