dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app/services/organizationService.module.ts @ 53675
1 |
import { NgModule} from '@angular/core'; |
---|---|
2 |
import { CommonModule } from '@angular/common'; |
3 |
import { FormsModule } from '@angular/forms'; |
4 |
|
5 |
import {OrganizationService} from './organization.service'; |
6 |
|
7 |
|
8 |
@NgModule({ |
9 |
imports: [ |
10 |
CommonModule, FormsModule |
11 |
],
|
12 |
declarations: [ |
13 |
],
|
14 |
providers:[ |
15 |
OrganizationService
|
16 |
],
|
17 |
exports: [ |
18 |
]
|
19 |
})
|
20 |
export class OrganizationServiceModule { } |