This commit is contained in:
“wanyongkang”
2024-01-02 14:13:19 +08:00
parent 09da57ad92
commit 5d8bbcc67b
9 changed files with 791 additions and 11 deletions

View File

@@ -81,6 +81,8 @@ namespace Hncore.Pass.Vpn.Service
agent = new AgentClient18Service(m_HttpClientFactory) { ClientName = product.GroupNO };
if (product.GroupNO == "g19")
agent = new AgentClient19Service(m_HttpClientFactory) { ClientName = product.GroupNO };
if (product.GroupNO == "g20")
agent = new AgentClient20Service(m_HttpClientFactory) { ClientName = product.GroupNO };
agent.Product = product;
return agent;
}