| 
									
										
										
										
											2016-03-16 18:01:33 +02:00
										 |  |  | (function(app) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // #docregion
 | 
					
						
							|  |  |  |   app.HeroDIComponent = HeroComponent; | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   function HeroComponent(dataService) { | 
					
						
							|  |  |  |     this.name = dataService.getHeroName(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   HeroComponent.parameters = [ | 
					
						
							|  |  |  |     app.DataService | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  |   HeroComponent.annotations = [ | 
					
						
							|  |  |  |     new ng.core.Component({ | 
					
						
							|  |  |  |       selector: 'hero-di', | 
					
						
							|  |  |  |       template: '<h1>Hero: {{name}}</h1>' | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  |   // #enddocregion
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-09 17:38:25 +01:00
										 |  |  |   app.HeroesDIModule = | 
					
						
							|  |  |  |     ng.core.NgModule({ | 
					
						
							|  |  |  |       imports: [ ng.platformBrowser.BrowserModule ], | 
					
						
							|  |  |  |       providers: [ app.DataService ], | 
					
						
							|  |  |  |       declarations: [ HeroComponent ], | 
					
						
							|  |  |  |       bootstrap: [ HeroComponent ] | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |     .Class({ | 
					
						
							|  |  |  |       constructor: function() {} | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-16 18:01:33 +02:00
										 |  |  | })(window.app = window.app || {}); |