import { Injectable } from '@nestjs/common';
import { DataSource } from 'typeorm';

@Injectable()
export class PatientSalutationService {
  constructor(private connection: DataSource) { }
  async findAll() {
    const getSalutation = await this.connection.query(`select * from PT_salutation`)
    return getSalutation;
  }

}
