public List <GDictionaryModel> FetchReviews()
        {
            List <GDictionary>      gdEntityList = new List <GDictionary>();
            List <GDictionaryModel> gdModel      = new List <GDictionaryModel>();

            ServiceLayer.InformationService obj       = new InformationService();
            InformationObjectMapper         objmapper = new InformationObjectMapper();

            gdEntityList = obj.FetchReviews();
            gdModel      = objmapper.MapGDictionaryEntityListToModelList(gdEntityList);
            return(gdModel);
        }