import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpClientModule } from '@angular/common/http'; import {AjaxService} from './ajax.service'; import {EncryptService} from './encrypt.service'; @NgModule({ declarations: [], imports: [ BrowserModule, FormsModule, HttpClientModule ], providers: [AjaxService,EncryptService], bootstrap: [] }) export class AjaxModule {} export {AjaxService} from './ajax.service';