feat: add UserManagementService feat: add CopmanyDriver relation and DriverManagementService chore: pupulate database seeding class fix: add review filtering by CompanyId
18 lines
370 B
C#
18 lines
370 B
C#
namespace SharedModels.DataTransferObjects;
|
|
|
|
public class DriverDto : UserDto
|
|
{
|
|
public int CompanyId { get; set; }
|
|
}
|
|
|
|
public class CreateDriverDto : CreateUserDto
|
|
{
|
|
public int CompanyId { get; set; }
|
|
|
|
public override IList<string>? Roles { get; set; }
|
|
}
|
|
|
|
public class UpdateDriverDto : UpdateUserDto
|
|
{
|
|
public override IList<string>? Roles { get; set; }
|
|
} |