From 6f3c0e33fa52632b354fc7edacf4110230172e71 Mon Sep 17 00:00:00 2001 From: OlgunR Date: Wed, 14 Jan 2026 09:06:04 +0100 Subject: [PATCH] Remove unused namespace imports from Program.cs Cleaned up Program.cs by removing unnecessary using directives for AutoMapper, DbFirst, and EntityFrameworkCore namespaces. This reduces clutter and improves code maintainability. --- DbFirst.API/Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/DbFirst.API/Program.cs b/DbFirst.API/Program.cs index a38cf5e..c406c41 100644 --- a/DbFirst.API/Program.cs +++ b/DbFirst.API/Program.cs @@ -1,4 +1,3 @@ -using AutoMapper; using DbFirst.Application.Catalogs; using DbFirst.Domain.Repositories; using DbFirst.Infrastructure;