Author: ygrego Date: 2015-06-15 12:27:23 +0000 (Mon, 15 Jun 2015) New Revision: 1727 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1727 Log: The objects declared in the factory oipf must be transformed in service for the emulator. Added: oipf/emulator/js/services/ oipf/emulator/js/services/OIPFServices.js Added: oipf/emulator/js/services/OIPFServices.js =================================================================== --- oipf/emulator/js/services/OIPFServices.js (rev 0) +++ oipf/emulator/js/services/OIPFServices.js 2015-06-15 12:27:23 UTC (rev 1727) @@ -0,0 +1,14 @@ +var OIPFServices = angular.module("OIPFServices", []); + +OIPFServices.factory("ChannelConfigService", function() { + return oipfObjectFactory.createChannelConfig(); +}) +.factory("SearchManagerService", function() { + oipfObjectFactory.createSearchManagerObject(); +}) +.factory("ConfigurationService", function() { + oipfObjectFactory.createConfigurationObject(); +}) +.factory("RecordingSchedulerService", function() { + oipfObjectFactory.createRecordingSchedulerObject(); +});