feat: add UserManagementService feat: add CopmanyDriver relation and DriverManagementService chore: pupulate database seeding class fix: add review filtering by CompanyId
16 lines
528 B
C#
16 lines
528 B
C#
namespace SharedModels.QueryParameters.Objects;
|
|
|
|
public class CompanyDriverParameters : ParametersBase
|
|
{
|
|
public const string DefaultFields = "id,firstName,lastName,patronymic,email,emailConfirmed,phoneNumber," +
|
|
"phoneNumberConfirmed,birthDate,gender,document,documentDetails," +
|
|
"companyId";
|
|
|
|
public CompanyDriverParameters()
|
|
{
|
|
Sort = "";
|
|
Fields = DefaultFields;
|
|
}
|
|
|
|
public int? CompanyId { get; set; }
|
|
} |