|
using AyCode.Core.Interfaces;
|
|
|
|
namespace AyCode.Interfaces;
|
|
|
|
public interface ICustomForeignKeyInt : ICustomForeignKey<int>
|
|
{ }
|
|
|
|
public interface ICustomForeignKeyGuid : ICustomForeignKey<Guid>
|
|
{ }
|
|
|
|
public interface ICustomForeignKey<out T> : IForeignKey
|
|
{
|
|
T ForeignKey { get; }
|
|
} |