19 lines
491 B
C#
19 lines
491 B
C#
|
|
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.Profiles;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace AyCode.Interfaces.ServiceProviders;
|
|
|
|
public interface IAcCompanyBase : IEntityGuid, IAcProfileForeignKey, ITimeStampInfo//, IOwnerId
|
|
{
|
|
Guid? OwnerId { get; set; }
|
|
string Name { get; set; }
|
|
|
|
double CommissionPercent { get; set; }
|
|
|
|
Guid AffiliateId { get; set; }
|
|
Guid? ReferralId { get; set; }
|
|
|
|
public void AddUser(Guid userId, int permissions);
|
|
} |