コード例 #1
0
 public TransactionManager(ITransactionReportRepository transactionReportRepository, IGuid guid,
                           IVirtualNumberApiAccess virtualNumberApiAccess, IBatchReportRepository batchReportRepository)
 {
     this.transactionReportRepository = transactionReportRepository;
     this.guid = guid;
     this.virtualNumberApiAccess = virtualNumberApiAccess;
     this.batchReportRepository  = batchReportRepository;
 }
コード例 #2
0
 public BatchManager(IBatchRepository batchRepository, IBatchReportRepository batchReportRepository)
 {
     this.batchRepository       = batchRepository;
     this.batchReportRepository = batchReportRepository;
 }