18 lines
598 B
C#
18 lines
598 B
C#
using AyCode.Interfaces.Profiles;
|
|
using AyCode.Interfaces.Profiles.Dtos;
|
|
using AyCode.Interfaces.Users;
|
|
using AyCode.Interfaces.Users.Dtos;
|
|
|
|
namespace AyCode.Models.Users;
|
|
|
|
public abstract class AcUserModelDtoBase<TUserDto, TProfile, TProfileDto> : AcUserModelDtoMinBase<TUserDto, TProfile, TProfileDto>
|
|
where TUserDto : class, IAcUserDtoBase
|
|
where TProfile : class, IAcProfileBase
|
|
where TProfileDto : class, IAcProfileDtoBase
|
|
{
|
|
protected AcUserModelDtoBase() {}
|
|
protected AcUserModelDtoBase(IUserBase<TProfile> user) : base(user)
|
|
{
|
|
//ServiceProvider...
|
|
}
|
|
} |