public RemoveAgentClaimCommand(Domain.Entities.Agent agent, string key)
 {
     Agent = agent;
     Key   = key;
 }
 public UpdateAgentCommand(Domain.Entities.Agent agent) => Agent = agent;
 public UpdateAgentInformationCommand(Domain.Entities.Agent agent) => Agent = agent;
 public GenerateResetPasswordTokenQuery(Domain.Entities.Agent agent) => Agent = agent;
Beispiel #5
0
 public AddAgentClaimCommand(Domain.Entities.Agent agent, string key, string value)
 {
     Agent = agent;
     Key   = key;
     Value = value;
 }