From 44da6ed371f24e70ebc7688bf1e999ce02593168 Mon Sep 17 00:00:00 2001 From: reignem Date: Thu, 9 Oct 2025 15:50:02 +0200 Subject: [PATCH] Maj --- PyroFetes/DTO/Product/Request/CreateProductDto.cs | 2 +- PyroFetes/DTO/Product/Request/UpdateProductDto.cs | 2 +- PyroFetes/DTO/Product/Response/GetProductDto.cs | 4 ++-- PyroFetes/DTO/Supplier/Request/CreateSupplierDto.cs | 2 +- PyroFetes/DTO/Supplier/Request/UpdateSupplierDto.cs | 2 +- PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs | 4 ++-- PyroFetes/Endpoints/Product/CreateProductEndpoint.cs | 4 ++-- PyroFetes/Endpoints/Product/GetAllProductsEndpoint.cs | 4 ++-- PyroFetes/Endpoints/Product/GetProductEndpoint.cs | 4 ++-- PyroFetes/Endpoints/Product/UpdateProductEndpoint.cs | 4 ++-- PyroFetes/Endpoints/Supplier/CreateSupplierEndpoint.cs | 4 ++-- PyroFetes/Endpoints/Supplier/GetAllSupplierEndpoint.cs | 4 ++-- PyroFetes/Endpoints/Supplier/GetSupplierEndpoint.cs | 4 ++-- PyroFetes/Endpoints/Supplier/UpdateSupplierEndpoint.cs | 4 ++-- 14 files changed, 24 insertions(+), 24 deletions(-) diff --git a/PyroFetes/DTO/Product/Request/CreateProductDto.cs b/PyroFetes/DTO/Product/Request/CreateProductDto.cs index ccfac26..542ac42 100644 --- a/PyroFetes/DTO/Product/Request/CreateProductDto.cs +++ b/PyroFetes/DTO/Product/Request/CreateProductDto.cs @@ -1,6 +1,6 @@ using PyroFetes.DTO.Product.Request; -namespace API.DTO.Product.Request +namespace PyroFetes.DTO.Product.Request { public class CreateProductDto { diff --git a/PyroFetes/DTO/Product/Request/UpdateProductDto.cs b/PyroFetes/DTO/Product/Request/UpdateProductDto.cs index 1f64e61..59ab8e5 100644 --- a/PyroFetes/DTO/Product/Request/UpdateProductDto.cs +++ b/PyroFetes/DTO/Product/Request/UpdateProductDto.cs @@ -1,6 +1,6 @@ using PyroFetes.DTO.Product.Request; -namespace API.DTO.Product.Request +namespace PyroFetes.DTO.Product.Request { public class UpdateProductDto { diff --git a/PyroFetes/DTO/Product/Response/GetProductDto.cs b/PyroFetes/DTO/Product/Response/GetProductDto.cs index 576f7e0..48763bf 100644 --- a/PyroFetes/DTO/Product/Response/GetProductDto.cs +++ b/PyroFetes/DTO/Product/Response/GetProductDto.cs @@ -1,8 +1,8 @@ -using API.DTO.Product.Request; +using PyroFetes.DTO.Product.Request; using PyroFetes.DTO.Product.Request; using PyroFetes.DTO.Product.Response; -namespace API.DTO.Product.Response +namespace PyroFetes.DTO.Product.Response { public class GetProductDto { diff --git a/PyroFetes/DTO/Supplier/Request/CreateSupplierDto.cs b/PyroFetes/DTO/Supplier/Request/CreateSupplierDto.cs index 3e6525c..9395f20 100644 --- a/PyroFetes/DTO/Supplier/Request/CreateSupplierDto.cs +++ b/PyroFetes/DTO/Supplier/Request/CreateSupplierDto.cs @@ -1,4 +1,4 @@ -namespace API.DTO.Supplier.Request; +namespace PyroFetes.DTO.Supplier.Request; public class CreateSupplierDto { diff --git a/PyroFetes/DTO/Supplier/Request/UpdateSupplierDto.cs b/PyroFetes/DTO/Supplier/Request/UpdateSupplierDto.cs index 0c9bb80..f71d406 100644 --- a/PyroFetes/DTO/Supplier/Request/UpdateSupplierDto.cs +++ b/PyroFetes/DTO/Supplier/Request/UpdateSupplierDto.cs @@ -1,4 +1,4 @@ -namespace API.DTO.Supplier.Request; +namespace PyroFetes.DTO.Supplier.Request; public class UpdateSupplierDto { diff --git a/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs b/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs index bf24cff..ba2237c 100644 --- a/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs +++ b/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs @@ -1,6 +1,6 @@ -using API.DTO.Supplier.Request; +using PyroFetes.DTO.Supplier.Request; -namespace API.DTO.Supplier.Response; +namespace PyroFetes.DTO.Supplier.Response; public class GetSupplierDto { diff --git a/PyroFetes/Endpoints/Product/CreateProductEndpoint.cs b/PyroFetes/Endpoints/Product/CreateProductEndpoint.cs index 7f4233c..5deb4fe 100644 --- a/PyroFetes/Endpoints/Product/CreateProductEndpoint.cs +++ b/PyroFetes/Endpoints/Product/CreateProductEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Product.Request; -using API.DTO.Product.Response; +using PyroFetes.DTO.Product.Request; +using PyroFetes.DTO.Product.Response; using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.DTO.Product.Request; diff --git a/PyroFetes/Endpoints/Product/GetAllProductsEndpoint.cs b/PyroFetes/Endpoints/Product/GetAllProductsEndpoint.cs index d1d1a75..ee5bb08 100644 --- a/PyroFetes/Endpoints/Product/GetAllProductsEndpoint.cs +++ b/PyroFetes/Endpoints/Product/GetAllProductsEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Product.Request; -using API.DTO.Product.Response; +using PyroFetes.DTO.Product.Request; +using PyroFetes.DTO.Product.Response; using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.DTO.Product.Request; diff --git a/PyroFetes/Endpoints/Product/GetProductEndpoint.cs b/PyroFetes/Endpoints/Product/GetProductEndpoint.cs index d9e70dd..695ac8e 100644 --- a/PyroFetes/Endpoints/Product/GetProductEndpoint.cs +++ b/PyroFetes/Endpoints/Product/GetProductEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Product.Request; -using API.DTO.Product.Response; +using PyroFetes.DTO.Product.Request; +using PyroFetes.DTO.Product.Response; using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.DTO.Product.Request; diff --git a/PyroFetes/Endpoints/Product/UpdateProductEndpoint.cs b/PyroFetes/Endpoints/Product/UpdateProductEndpoint.cs index a5b91c2..2640ec9 100644 --- a/PyroFetes/Endpoints/Product/UpdateProductEndpoint.cs +++ b/PyroFetes/Endpoints/Product/UpdateProductEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Product.Request; -using API.DTO.Product.Response; +using PyroFetes.DTO.Product.Request; +using PyroFetes.DTO.Product.Response; using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.DTO.Product.Request; diff --git a/PyroFetes/Endpoints/Supplier/CreateSupplierEndpoint.cs b/PyroFetes/Endpoints/Supplier/CreateSupplierEndpoint.cs index d87755a..530e1af 100644 --- a/PyroFetes/Endpoints/Supplier/CreateSupplierEndpoint.cs +++ b/PyroFetes/Endpoints/Supplier/CreateSupplierEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Supplier.Request; -using API.DTO.Supplier.Response; +using PyroFetes.DTO.Supplier.Request; +using PyroFetes.DTO.Supplier.Response; using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.Models; diff --git a/PyroFetes/Endpoints/Supplier/GetAllSupplierEndpoint.cs b/PyroFetes/Endpoints/Supplier/GetAllSupplierEndpoint.cs index 674e93b..28517a3 100644 --- a/PyroFetes/Endpoints/Supplier/GetAllSupplierEndpoint.cs +++ b/PyroFetes/Endpoints/Supplier/GetAllSupplierEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Supplier.Response; -using API.DTO.Supplier.Request; +using PyroFetes.DTO.Supplier.Response; +using PyroFetes.DTO.Supplier.Request; using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.Models; diff --git a/PyroFetes/Endpoints/Supplier/GetSupplierEndpoint.cs b/PyroFetes/Endpoints/Supplier/GetSupplierEndpoint.cs index f4a498a..a66bfad 100644 --- a/PyroFetes/Endpoints/Supplier/GetSupplierEndpoint.cs +++ b/PyroFetes/Endpoints/Supplier/GetSupplierEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Supplier.Request; -using API.DTO.Supplier.Response; +using PyroFetes.DTO.Supplier.Request; +using PyroFetes.DTO.Supplier.Response; using FastEndpoints; using Microsoft.EntityFrameworkCore; diff --git a/PyroFetes/Endpoints/Supplier/UpdateSupplierEndpoint.cs b/PyroFetes/Endpoints/Supplier/UpdateSupplierEndpoint.cs index ce5b8ca..fde3c2e 100644 --- a/PyroFetes/Endpoints/Supplier/UpdateSupplierEndpoint.cs +++ b/PyroFetes/Endpoints/Supplier/UpdateSupplierEndpoint.cs @@ -1,5 +1,5 @@ -using API.DTO.Supplier.Request; -using API.DTO.Supplier.Response; +using PyroFetes.DTO.Supplier.Request; +using PyroFetes.DTO.Supplier.Response; using FastEndpoints; using Microsoft.EntityFrameworkCore; using PyroFetes.Models;