コード例 #1
0
ファイル: PaymentController.cs プロジェクト: jaimeyzv/Booking
 public PaymentController(
     IPaymentBusiness paymentBusiness,
     IMapper mapper,
     IApiResponseWrapper apiResponseWrapper)
 {
     this.paymentBusiness    = paymentBusiness;
     this.mapper             = mapper;
     this.apiResponseWrapper = apiResponseWrapper;
 }
コード例 #2
0
ファイル: CardController.cs プロジェクト: jaimeyzv/Booking
 public CardController(
     ICardBusiness cardBusiness,
     IMapper mapper,
     IApiResponseWrapper apiResponseWrapper)
 {
     this.cardBusiness       = cardBusiness;
     this.mapper             = mapper;
     this.apiResponseWrapper = apiResponseWrapper;
 }
コード例 #3
0
ファイル: BalanceController.cs プロジェクト: jaimeyzv/Booking
 public BalanceController(
     IBalanceBusiness balanceBusiness,
     IMapper mapper,
     IApiResponseWrapper apiResponseWrapper)
 {
     this.balanceBusiness    = balanceBusiness;
     this.mapper             = mapper;
     this.apiResponseWrapper = apiResponseWrapper;
 }