41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { ViewAppointmentRoutingModule } from './view-appointment-routing.module';
|
|
import { ViewAppointmentComponent } from './view-appointment.component';
|
|
import { TableModule } from 'primeng/table';
|
|
import { DialogModule } from 'primeng/dialog';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { ButtonModule } from 'primeng/button';
|
|
import { CalendarModule } from 'primeng/calendar';
|
|
import { DropdownModule } from 'primeng/dropdown';
|
|
import { InputTextModule } from 'primeng/inputtext';
|
|
import { RadioButtonModule } from 'primeng/radiobutton';
|
|
import { DoctorService } from '@proxy/doctors';
|
|
import { InputTextareaModule } from 'primeng/inputtextarea';
|
|
import { ChipModule } from 'primeng/chip';
|
|
import { AppointmentDialogComponent } from "../appointment-dialog/appointment-dialog.component";
|
|
|
|
@NgModule({
|
|
declarations: [ViewAppointmentComponent],
|
|
imports: [
|
|
CommonModule,
|
|
ViewAppointmentRoutingModule,
|
|
TableModule,
|
|
DialogModule,
|
|
FormsModule,
|
|
TableModule,
|
|
ButtonModule,
|
|
DialogModule,
|
|
InputTextModule,
|
|
CalendarModule,
|
|
DropdownModule,
|
|
RadioButtonModule,
|
|
InputTextareaModule,
|
|
ChipModule,
|
|
AppointmentDialogComponent
|
|
],
|
|
providers:[DoctorService]
|
|
})
|
|
export class ViewAppointmentModule {}
|