Move new classes to proper namespaces

This commit is contained in:
2026-02-27 15:23:40 +01:00
parent c9a41adef3
commit cb6437ee9d
4 changed files with 5 additions and 3 deletions

View File

@@ -5,6 +5,8 @@
*/
using System.Data;
using DynamORM.Mapper;
using DynamORM.Objects;
namespace DynamORM.Tests.Helpers
{

View File

@@ -31,6 +31,7 @@ using System.Collections.Generic;
using System.Data;
using System.Linq;
using DynamORM.Mapper;
using DynamORM.Objects;
namespace DynamORM.Helpers
{

View File

@@ -28,9 +28,8 @@
using System;
using System.Data;
using DynamORM.Mapper;
namespace DynamORM
namespace DynamORM.Mapper
{
/// <summary>Declares metadata for object-based stored procedure parameters.</summary>
[AttributeUsage(AttributeTargets.Property)]

View File

@@ -28,7 +28,7 @@
using System.Data;
namespace DynamORM
namespace DynamORM.Objects
{
/// <summary>Marks an object as an explicit stored procedure parameter contract.</summary>
public interface IProcedureParameters