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