コード例 #1
0
 public PawnshopTransactionsController(
     IPawningService pawningService,
     IAppraisalService appraisalService,
     ICustomerService customerServic,
     IReferenceService referenceService,
     IPawnshopTransactionService pawnshopTransactionService)
 {
     _pawningService             = pawningService;
     _appraisalService           = appraisalService;
     _customerService            = customerServic;
     _referenceService           = referenceService;
     _pawnshopTransactionService = pawnshopTransactionService;
 }