(function () { 'use strict'; var serviceId = 'calendarService'; angular.module('calendar').factory(serviceId, [calendarService]); function calendarService() { var service = { }; return service; } })();