From f7176f8e28d3322763ecb5f2d5ff4808591108e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Weslley=20Ara=C3=BAjo?= <46850407+wellwelwel@users.noreply.github.com> Date: Fri, 25 Oct 2024 12:19:34 -0300 Subject: [PATCH 1/2] fix: adjust `BaseService` import --- src/services/ProductService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/ProductService.ts b/src/services/ProductService.ts index 5dc7b26..ccd4c8c 100644 --- a/src/services/ProductService.ts +++ b/src/services/ProductService.ts @@ -1,5 +1,5 @@ import { Product } from '../entities/Product.ts'; -import { BaseService } from './base/baseService.ts'; +import { BaseService } from './base/BaseService.ts'; export class ProductService extends BaseService { } From 73af3a68045b906eeee9746269832abbd3bf72a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Weslley=20Ara=C3=BAjo?= <46850407+wellwelwel@users.noreply.github.com> Date: Fri, 25 Oct 2024 16:53:09 -0300 Subject: [PATCH 2/2] fix: adjust `BaseService` import --- src/services/StudentService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/StudentService.ts b/src/services/StudentService.ts index c3b1415..b8285c9 100644 --- a/src/services/StudentService.ts +++ b/src/services/StudentService.ts @@ -1,5 +1,5 @@ import { Student } from '../entities/Student.ts'; -import { BaseService } from './base/baseService.ts'; +import { BaseService } from './base/BaseService.ts'; export class StudentService extends BaseService { }