| 
									
										
										
										
											2016-11-13 14:09:28 -08:00
										 |  |  | import { Component }   from '@angular/core'; | 
					
						
							| 
									
										
										
										
											2016-10-13 17:59:00 +01:00
										 |  |  | import { DataService } from './data.service'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // #docregion | 
					
						
							| 
									
										
										
										
											2016-11-13 14:09:28 -08:00
										 |  |  | export class HeroComponent { | 
					
						
							| 
									
										
										
										
											2016-10-13 17:59:00 +01:00
										 |  |  |   constructor(dataService) { | 
					
						
							|  |  |  |     this.name = dataService.getHeroName(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HeroComponent.annotations = [ | 
					
						
							|  |  |  |   new Component({ | 
					
						
							|  |  |  |     selector: 'hero-di', | 
					
						
							|  |  |  |     template: `<h1>Hero: {{name}}</h1>` | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HeroComponent.parameters = [ | 
					
						
							|  |  |  |   [DataService] | 
					
						
							|  |  |  | ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // #enddocregion |