[CORD-1780] XosConfirm implementation

Change-Id: I053c6ece6a5bd41014bdbb45d8fbf15f99a5b7ca
diff --git a/src/app/core/index.ts b/src/app/core/index.ts
index 523bae6..bdd0157 100644
--- a/src/app/core/index.ts
+++ b/src/app/core/index.ts
@@ -46,6 +46,8 @@
 import {xosDebugSummary} from './debug/debug-summary';
 import {XosDebugService} from './debug/debug.service';
 import {xosDebugModel} from './debug/debug-model';
+import {xosConfirm} from './confirm/confirm';
+import {XosConfirm} from './confirm/confirm.service';
 
 export const xosCore = 'xosCore';
 
@@ -67,6 +69,7 @@
   .service('XosComponentInjector', XosComponentInjector)
   .service('XosDebouncer', XosDebouncer)
   .service('XosDebug', XosDebugService)
+  .service('XosConfirm', XosConfirm)
   .directive('xosLinkWrapper', xosLinkWrapper)
   .component('xosHeader', xosHeader)
   .component('xosFooter', xosFooter)
@@ -83,5 +86,6 @@
   .component('xosKeyBindingPanel', xosKeyBindingPanel)
   .component('xosDebugSummary', xosDebugSummary)
   .component('xosDebugModel', xosDebugModel)
+  .component('xosConfirm', xosConfirm)
   .filter('pagination', PaginationFilter)
   .filter('arrayToList', ArrayToListFilter);