public BingMapListDriver(IBingMapListService mapListService, IContentManager content, IMediaLibraryService mediaService, IShapeFactory shapeFactory)
 {
     _mapListService      = mapListService;
     _content             = content;
     _mediaLibraryService = mediaService;
     _shape = shapeFactory;
 }
        public BingMapListHandler(IRepository <BingMapListRecord> repository, IBingMapListService mapService)
        {
            Filters.Add(StorageFilter.For(repository));
            _mapService = mapService;

            //OnInitializing<BingMapListPart>(propertySetHandlers);
            OnLoaded <BingMapListPart>(lazyLoadHandlers);
        }
 public BingLocationDriver(IBingMapListService mapListService, IMediaLibraryService mediaService, IOrchardServices services)
 {
     _mapListService      = mapListService;
     _mediaLibraryService = mediaService;
     _services            = services;
 }