14 lines
353 B
C#
14 lines
353 B
C#
using AyCode.Interfaces.Users;
|
|
using TIAM.Entities.Products;
|
|
using TIAM.Entities.Profiles;
|
|
|
|
namespace TIAM.Entities.Users;
|
|
|
|
public interface IUser : IUserBase<Profile>, IUserDto
|
|
{
|
|
public List<Product> Products { get; }
|
|
|
|
//public ServiceProvider ServiceProvider { get; set; }
|
|
public List<UserProductMapping> UserProductMappings { get; }
|
|
}
|