Skip to content

Commit

Permalink
修复编译错误
Browse files Browse the repository at this point in the history
  • Loading branch information
fightroad committed Jan 10, 2025
1 parent 44342c5 commit a037aa7
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions Services/StoreSCU.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,11 @@ public class StoreSCU : IStoreSCU
{
private readonly QueryRetrieveConfig _config;
private readonly string _callingAE;
private readonly int _localPort;
private readonly ILoggerFactory _loggerFactory;

public StoreSCU(
IOptions<QueryRetrieveConfig> config,
ILoggerFactory loggerFactory)
public StoreSCU(IOptions<QueryRetrieveConfig> config)
{
_config = config.Value;
_callingAE = _config.LocalAeTitle;
_localPort = _config.LocalPort;
_loggerFactory = loggerFactory;
}

private IDicomClient CreateClient(RemoteNode node)
Expand Down

0 comments on commit a037aa7

Please sign in to comment.