using AyCode.Interfaces.Entities; using AyCode.Interfaces.Profiles; using AyCode.Interfaces.TimeStampInfo; namespace AyCode.Interfaces.ServiceProviders; public interface IAcCompanyBase : IEntityGuid, IAcProfileForeignKey, ITimeStampInfo, IOwnerId { string Name { get; set; } double? CommissionPercent { get; set; } Guid AffiliateId { get; set; } Guid? ReferralId { get; set; } }