diff --git a/src/customer-support/customers/customer.controller.ts b/src/customer-support/customers/customer.controller.ts index e69de29..ebd71b0 100644 --- a/src/customer-support/customers/customer.controller.ts +++ b/src/customer-support/customers/customer.controller.ts @@ -0,0 +1,6 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class CustomerController { + +} \ No newline at end of file diff --git a/src/customer-support/customers/customer.module.ts b/src/customer-support/customers/customer.module.ts index e69de29..541b7b6 100644 --- a/src/customer-support/customers/customer.module.ts +++ b/src/customer-support/customers/customer.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { CustomerController } from "src/customer-support/customers/customer.controller"; +import { CustomerService } from "src/customer-support/customers/customer.service"; + +@Module({ + imports: [CustomerService], + providers: [CustomerController], +}) export class CustomerModule { } \ No newline at end of file diff --git a/src/customer-support/customers/customer.service.ts b/src/customer-support/customers/customer.service.ts index e69de29..6a26f64 100644 --- a/src/customer-support/customers/customer.service.ts +++ b/src/customer-support/customers/customer.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class CustomerService { + +} \ No newline at end of file diff --git a/src/customer-support/deliveries/delivery.controller.ts b/src/customer-support/deliveries/delivery.controller.ts index e69de29..a8e2139 100644 --- a/src/customer-support/deliveries/delivery.controller.ts +++ b/src/customer-support/deliveries/delivery.controller.ts @@ -0,0 +1,6 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class DeliveryController { + +} \ No newline at end of file diff --git a/src/customer-support/deliveries/delivery.module.ts b/src/customer-support/deliveries/delivery.module.ts index e69de29..ca4c3e8 100644 --- a/src/customer-support/deliveries/delivery.module.ts +++ b/src/customer-support/deliveries/delivery.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { DeliveryController } from "src/customer-support/deliveries/delivery.controller"; +import { DeliveryService } from "src/customer-support/deliveries/delivery.service"; + +@Module({ + imports: [DeliveryService], + providers: [DeliveryController], +}) export class DeliveryModule { } \ No newline at end of file diff --git a/src/customer-support/deliveries/delivery.service.ts b/src/customer-support/deliveries/delivery.service.ts index e69de29..39845cb 100644 --- a/src/customer-support/deliveries/delivery.service.ts +++ b/src/customer-support/deliveries/delivery.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class DeliveryService { + +} \ No newline at end of file diff --git a/src/customer-support/devices/device.controller.ts b/src/customer-support/devices/device.controller.ts index e69de29..bf94bd9 100644 --- a/src/customer-support/devices/device.controller.ts +++ b/src/customer-support/devices/device.controller.ts @@ -0,0 +1,6 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class DeviceController { + +} \ No newline at end of file diff --git a/src/customer-support/devices/device.module.ts b/src/customer-support/devices/device.module.ts index e69de29..0a82e0b 100644 --- a/src/customer-support/devices/device.module.ts +++ b/src/customer-support/devices/device.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { DeviceController } from "src/customer-support/devices/device.controller"; +import { DeviceService } from "src/customer-support/devices/device.service"; + +@Module({ + imports: [DeviceService], + providers: [DeviceController] +}) export class DeviceModule { } \ No newline at end of file diff --git a/src/customer-support/devices/device.service.ts b/src/customer-support/devices/device.service.ts index e69de29..cb49cf2 100644 --- a/src/customer-support/devices/device.service.ts +++ b/src/customer-support/devices/device.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class DeviceService { + +} \ No newline at end of file diff --git a/src/customer-support/fibre/fibre.controller.ts b/src/customer-support/fibre/fibre.controller.ts index e69de29..9222885 100644 --- a/src/customer-support/fibre/fibre.controller.ts +++ b/src/customer-support/fibre/fibre.controller.ts @@ -0,0 +1,6 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class FibreController { + +} \ No newline at end of file diff --git a/src/customer-support/fibre/fibre.module.ts b/src/customer-support/fibre/fibre.module.ts index e69de29..92c5c7d 100644 --- a/src/customer-support/fibre/fibre.module.ts +++ b/src/customer-support/fibre/fibre.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { FibreController } from "src/customer-support/fibre/fibre.controller"; +import { FibreService } from "src/customer-support/fibre/fibre.service"; + +@Module({ + imports: [FibreService], + providers: [FibreController], +}) export class FibreModule { } \ No newline at end of file diff --git a/src/customer-support/fibre/fibre.service.ts b/src/customer-support/fibre/fibre.service.ts index e69de29..6b52031 100644 --- a/src/customer-support/fibre/fibre.service.ts +++ b/src/customer-support/fibre/fibre.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class FibreService { + +} \ No newline at end of file diff --git a/src/customer-support/phones/phone.controller.ts b/src/customer-support/phones/phone.controller.ts index e69de29..4dd8260 100644 --- a/src/customer-support/phones/phone.controller.ts +++ b/src/customer-support/phones/phone.controller.ts @@ -0,0 +1,6 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class PhoneController { + +} \ No newline at end of file diff --git a/src/customer-support/phones/phone.module.ts b/src/customer-support/phones/phone.module.ts index e69de29..fd20914 100644 --- a/src/customer-support/phones/phone.module.ts +++ b/src/customer-support/phones/phone.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { PhoneController } from "src/customer-support/phones/phone.controller"; +import { PhoneService } from "src/customer-support/phones/phone.service"; + +@Module({ + imports: [PhoneService], + providers: [PhoneController], +}) export class PhoneModule { } \ No newline at end of file diff --git a/src/customer-support/phones/phone.service.ts b/src/customer-support/phones/phone.service.ts index e69de29..b707747 100644 --- a/src/customer-support/phones/phone.service.ts +++ b/src/customer-support/phones/phone.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class PhoneService { + +} \ No newline at end of file diff --git a/src/customer-support/product/product.controller.ts b/src/customer-support/product/product.controller.ts index e69de29..822135c 100644 --- a/src/customer-support/product/product.controller.ts +++ b/src/customer-support/product/product.controller.ts @@ -0,0 +1,6 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class ProductController { + +} \ No newline at end of file diff --git a/src/customer-support/product/product.module.ts b/src/customer-support/product/product.module.ts index e69de29..4fdd7f0 100644 --- a/src/customer-support/product/product.module.ts +++ b/src/customer-support/product/product.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { ProductController } from "src/customer-support/product/product.controller"; +import { ProductService } from "src/customer-support/product/product.service"; + +@Module({ + imports: [ProductService], + providers: [ProductController], +}) export class ProductModule { } \ No newline at end of file diff --git a/src/customer-support/product/product.service.ts b/src/customer-support/product/product.service.ts index e69de29..e9b0b60 100644 --- a/src/customer-support/product/product.service.ts +++ b/src/customer-support/product/product.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class ProductService { + + } \ No newline at end of file diff --git a/src/customer-support/services/services.controller.ts b/src/customer-support/services/services.controller.ts index e69de29..4b2cfe5 100644 --- a/src/customer-support/services/services.controller.ts +++ b/src/customer-support/services/services.controller.ts @@ -0,0 +1,6 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class ServiceController{ + +} \ No newline at end of file diff --git a/src/customer-support/services/services.module.ts b/src/customer-support/services/services.module.ts index e69de29..0d582c9 100644 --- a/src/customer-support/services/services.module.ts +++ b/src/customer-support/services/services.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { ServiceController } from "src/customer-support/services/services.controller"; +import { ServiceService } from "src/customer-support/services/services.service"; + +@Module({ + imports: [ServiceService], + providers: [ServiceController], +}) export class ServiceModule { } \ No newline at end of file diff --git a/src/customer-support/services/services.service.ts b/src/customer-support/services/services.service.ts index e69de29..255730f 100644 --- a/src/customer-support/services/services.service.ts +++ b/src/customer-support/services/services.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class ServiceService { + +} \ No newline at end of file diff --git a/src/customer-support/television/television.controller.ts b/src/customer-support/television/television.controller.ts index e69de29..ec4c15b 100644 --- a/src/customer-support/television/television.controller.ts +++ b/src/customer-support/television/television.controller.ts @@ -0,0 +1,8 @@ +import { Controller } from "@nestjs/common"; + +@Controller() +export class TelevisionController { + + + +} \ No newline at end of file diff --git a/src/customer-support/television/television.module.ts b/src/customer-support/television/television.module.ts index e69de29..0376bf5 100644 --- a/src/customer-support/television/television.module.ts +++ b/src/customer-support/television/television.module.ts @@ -0,0 +1,8 @@ +import { Module } from "@nestjs/common"; +import { TelevisionController } from "src/customer-support/television/television.controller"; +import { TelevisionService } from "src/customer-support/television/television.service"; + +@Module({ + imports: [TelevisionService], + providers: [TelevisionController], +}) export class TelevisionModule { } \ No newline at end of file diff --git a/src/customer-support/television/television.service.ts b/src/customer-support/television/television.service.ts index e69de29..758db41 100644 --- a/src/customer-support/television/television.service.ts +++ b/src/customer-support/television/television.service.ts @@ -0,0 +1,7 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class TelevisionService { + + +} \ No newline at end of file diff --git a/src/customer-support/tickets/ticket.controller.ts b/src/customer-support/tickets/ticket.controller.ts index e69de29..c9ca989 100644 --- a/src/customer-support/tickets/ticket.controller.ts +++ b/src/customer-support/tickets/ticket.controller.ts @@ -0,0 +1,7 @@ +import { Controller } from "@nestjs/common"; + + +@Controller() +export class TicketController { + +} \ No newline at end of file diff --git a/src/customer-support/tickets/ticket.module.ts b/src/customer-support/tickets/ticket.module.ts index e69de29..f9e7101 100644 --- a/src/customer-support/tickets/ticket.module.ts +++ b/src/customer-support/tickets/ticket.module.ts @@ -0,0 +1,9 @@ +import { Module } from "@nestjs/common"; +import { TicketController } from "src/customer-support/tickets/ticket.controller"; +import { TicketService } from "src/customer-support/tickets/ticket.service"; + +@Module({ + imports: [TicketService], + providers: [TicketController] +}) +export class TicketModule { } \ No newline at end of file diff --git a/src/customer-support/tickets/ticket.service.ts b/src/customer-support/tickets/ticket.service.ts index e69de29..3784e0d 100644 --- a/src/customer-support/tickets/ticket.service.ts +++ b/src/customer-support/tickets/ticket.service.ts @@ -0,0 +1,6 @@ +import { Injectable } from "@nestjs/common"; + +@Injectable() +export class TicketService { + +} \ No newline at end of file