2025-12-04 21:05:57 +03:30
|
|
|
import { Injectable } from '@nestjs/common'
|
|
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
|
export class CustomersService {
|
2026-02-12 20:31:04 +03:30
|
|
|
findAll() {
|
|
|
|
|
// TODO: Implement fetching all customers
|
|
|
|
|
return []
|
2025-12-04 21:05:57 +03:30
|
|
|
}
|
|
|
|
|
|
2026-02-12 20:31:04 +03:30
|
|
|
findOne(id: number) {
|
|
|
|
|
// TODO: Implement fetching a single customer
|
|
|
|
|
return {}
|
2025-12-04 21:05:57 +03:30
|
|
|
}
|
|
|
|
|
|
2026-02-12 20:31:04 +03:30
|
|
|
create(data: any) {
|
|
|
|
|
// TODO: Implement customer creation
|
|
|
|
|
return data
|
2025-12-04 21:05:57 +03:30
|
|
|
}
|
|
|
|
|
}
|