Clean up and organize using statements across files

Removed unused and redundant using/import statements from multiple files, including command, repository, and Program.cs. No functional changes; this commit improves code clarity and organization.
This commit is contained in:
OlgunR
2026-01-19 14:56:55 +01:00
parent 8d3783cfec
commit 3653def773
7 changed files with 2 additions and 17 deletions

View File

@@ -1,17 +1,9 @@
using Azure;
using DbFirst.Domain;
using DbFirst.Domain.Entities;
using DbFirst.Domain.Repositories;
using Microsoft.Data.SqlClient;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics.Metrics;
using System.Text;
using System.Threading.Channels;
using static Microsoft.EntityFrameworkCore.DbLoggerCategory;
using static System.Runtime.InteropServices.JavaScript.JSType;
using DbFirst.Domain;
namespace DbFirst.Infrastructure.Repositories;