using AyCode.Core.Interfaces; using AyCode.Interfaces; namespace Mango.Nop.Core.Interfaces.ForeignKeys; public interface ICustomerForeignKey : IForeignKey { int CustomerId { get; set; } }