Project

General

Profile

1
import { NgModule}            from '@angular/core';
2
import { CommonModule }        from '@angular/common';
3
import { FormsModule }         from '@angular/forms';
4

    
5
import {SearchOrganizationsService} from './searchOrganizations.service';
6

    
7

    
8
@NgModule({
9
  imports: [
10
    CommonModule, FormsModule
11
  ],
12
  declarations: [
13
  ],
14
  providers:[
15
  SearchOrganizationsService
16
],
17
  exports: [
18
    ]
19
})
20
export class OrganizationsServiceModule { }
(10-10/23)