示例#1
0
 public UpdateSelfishStatsCommandHandler(IVerifiedPLEntriesRepository repo, ILiveClient liveClient, SelfOwnerShipCalculator calculator, IMediator mediator)
 {
     _repo       = repo;
     _liveClient = liveClient;
     _calculator = calculator;
     _mediator   = mediator;
 }
示例#2
0
 public SeedSelfishnessHandler(IVerifiedPLEntriesRepository plRepo, ILiveClient liveClient, IGlobalSettingsClient settingsClient, SelfOwnerShipCalculator calculator)
 {
     _plRepo         = plRepo;
     _liveClient     = liveClient;
     _settingsClient = settingsClient;
     _calculator     = calculator;
 }