示例#1
0
 public EngageWithTransferAgreementHandler(TransferInstructionRepository transferInstructionRepository, TransferRepository transferRepository)
 {
     _transferInstructionRepository = transferInstructionRepository;
     _transferRepository            = transferRepository;
 }
示例#2
0
 public GetTransferInstructionByIdQuery(TransferInstructionRepository db)
 {
     _db = db;
 }
示例#3
0
 public ReleasePlayerHandler(TransferInstructionRepository transferInstructionRepository, TransferRepository transferRepository)
 {
     _transferInstructionRepository = transferInstructionRepository;
     _transferRepository            = transferRepository;
 }