blob: 529857ac391e0fb09b37c667ee62079d9f97cf99 [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001import {ComponentFactory} from "../utils/component-factory";
2import {ComponentInstanceFactory} from "../utils/component-instance-factory";
3import {ChangeLifecycleStateHandler} from "../utils/change-lifecycle-state-handler";
4import {ModalsHandler} from "../utils/modals-handler";
5import {MenuHandler} from "../utils/menu-handler";
6
7let moduleName:string = 'Sdc.Utils';
8let serviceModule:ng.IModule = angular.module(moduleName, []);
9
10//Utils
11serviceModule.service('ComponentFactory', ComponentFactory);
12serviceModule.service('ComponentInstanceFactory', ComponentInstanceFactory);
13serviceModule.service('ChangeLifecycleStateHandler', ChangeLifecycleStateHandler);
14serviceModule.service('ModalsHandler', ModalsHandler);
15serviceModule.service('MenuHandler', MenuHandler);
16