import { Injectable } from '@nestjs/common';
import { CreatePhrNewBillingDto } from './dto/create-phr-new-billing.dto';
import { UpdatePhrNewBillingDto } from './dto/update-phr-new-billing.dto';

@Injectable()
export class PhrNewBillingService {
  create(createPhrNewBillingDto: CreatePhrNewBillingDto) {
    return 'This action adds a new phrNewBilling';
  }

  findAll() {
    return `This action returns all phrNewBilling`;
  }

  findOne(id: number) {
    return `This action returns a #${id} phrNewBilling`;
  }

  update(id: number, updatePhrNewBillingDto: UpdatePhrNewBillingDto) {
    return `This action updates a #${id} phrNewBilling`;
  }

  remove(id: number) {
    return `This action removes a #${id} phrNewBilling`;
  }
}
