diff --git a/src/services/gameapi/Codebreaker.Data.Cosmos/Usings.cs b/src/services/gameapi/Codebreaker.Data.Cosmos/Usings.cs
index c78963ce..f314b248 100644
--- a/src/services/gameapi/Codebreaker.Data.Cosmos/Usings.cs
+++ b/src/services/gameapi/Codebreaker.Data.Cosmos/Usings.cs
@@ -1 +1,5 @@
-global using Codebreaker.GameAPIs.Models;
+global using Codebreaker.Data.Cosmos.Utilities;
+global using Codebreaker.GameAPIs.Data;
+global using Codebreaker.GameAPIs.Models;
+
+global using Microsoft.EntityFrameworkCore;
\ No newline at end of file
diff --git a/src/services/gameapi/Codebreaker.Data.Cosmos/Utilities/FieldValueValueConverter.cs b/src/services/gameapi/Codebreaker.Data.Cosmos/Utilities/FieldValueValueConverter.cs
index 38007dbd..76322af1 100644
--- a/src/services/gameapi/Codebreaker.Data.Cosmos/Utilities/FieldValueValueConverter.cs
+++ b/src/services/gameapi/Codebreaker.Data.Cosmos/Utilities/FieldValueValueConverter.cs
@@ -1,6 +1,6 @@
-using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
+using System.Text.Json;
 
-using System.Text.Json;
+using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
 
 namespace Codebreaker.Data.Cosmos.Utilities;