11 lines
343 B
C#
11 lines
343 B
C#
using AyCode.Interfaces.ServiceProviders;
|
|
using AyCode.Interfaces.Users;
|
|
using System;
|
|
using Mango.Interfaces.Users;
|
|
|
|
namespace Mango.Interfaces.Companies;
|
|
|
|
public interface ICompany<TUser, TUserToCompany> : IAcServiceProvider<TUser, TUserToCompany>
|
|
where TUser : class, IUserBase
|
|
where TUserToCompany : class, IUserToCompanyBase
|
|
{} |