EchoTex_Payroll/HRM.UI/ClientApp/src/app/common-interface/common-interface.module.ts

50 lines
2.0 KiB
TypeScript
Raw Normal View History

2024-10-14 10:01:49 +06:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CommonInterfaceRoutingModule } from './common-interface-routing.module';
import { UploadedFilePathComponent } from './uploaded-file-path/uploaded-file-path.component';
import { FormsModule, NgModel, ReactiveFormsModule } from '@angular/forms';
import { DropDownListModule } from '@progress/kendo-angular-dropdowns';
import { FileUploadModule } from 'primeng/fileupload';
import { LabelModule } from '@progress/kendo-angular-label';
import { RadioButtonModule } from '@progress/kendo-angular-inputs';
import { DataUploadComponent } from './data-upload/data-upload.component';
import { BodyModule, GridModule, SharedModule } from '@progress/kendo-angular-grid';
import { GeneralizeReportComponent } from './generalize-report/generalize-report.component';
import { Pickermodule } from '../picker/picker.module';
import { DataUploadService } from '../_services/Basic/dataUpload.service';
import { LoadingPanelModule } from '../hrm-loding panel/loading-panel.module';
import { loadingPanelService } from '../hrm-loding panel/loding.panel.service';
import { HRMNotificationService } from '../app.notification.service';
import {ButtonModule} from '@progress/kendo-angular-buttons';
import {InputTextModule} from 'primeng/inputtext';
import {DatePickerModule} from '@progress/kendo-angular-dateinputs';
@NgModule({
declarations: [UploadedFilePathComponent, DataUploadComponent, GeneralizeReportComponent],
imports: [
CommonModule,
CommonInterfaceRoutingModule,
ReactiveFormsModule,
DropDownListModule,
FileUploadModule,
LabelModule,
RadioButtonModule,
GridModule,
BodyModule,
SharedModule,
Pickermodule,
LoadingPanelModule,
DropDownListModule,
FormsModule,
ButtonModule,
InputTextModule,
DatePickerModule
],
providers: [
DataUploadService,
loadingPanelService,
HRMNotificationService
],
})
export class CommonInterfaceModule { }