14 lines
496 B
C#
14 lines
496 B
C#
using AyCode.Interfaces.ServiceProviders;
|
|
using TIAM.Entities.Products;
|
|
using TIAM.Entities.Profiles;
|
|
using TIAM.Entities.Users;
|
|
|
|
namespace TIAM.Entities.ServiceProviders;
|
|
|
|
public interface ICompany<TUser, TIUserToServiceProvider, TProfile> : IAcCompany<TUser, TIUserToServiceProvider, TProfile>, ICompanyBase
|
|
where TUser : class, IUserBase
|
|
where TIUserToServiceProvider : class, IUserToCompanyBase
|
|
where TProfile : class, IProfileDto
|
|
{
|
|
public List<Product> Products { get; }
|
|
} |