From 924f97332fadafdea3ee021e5012134767b50d4f Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Mon, 8 Jan 2024 14:50:52 +0300 Subject: [PATCH] style: sort reference --- Application/Interfaces/DbContexts/IDbContextBase.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/Interfaces/DbContexts/IDbContextBase.cs b/Application/Interfaces/DbContexts/IDbContextBase.cs index 2b650ff..c06bb69 100644 --- a/Application/Interfaces/DbContexts/IDbContextBase.cs +++ b/Application/Interfaces/DbContexts/IDbContextBase.cs @@ -1,5 +1,5 @@ -using System.Threading.Tasks; -using System.Threading; +using System.Threading; +using System.Threading.Tasks; namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts;