コード例 #1
0
 public ReportController(
     IBudgetDac budgetDac,
     IPartnerDac partnerDac,
     ITransactionDac transactionDac,
     IBringForwardDac bringForwardDac,
     IIdentityService identityService
     )
 {
     this.budgetDac       = budgetDac;
     this.partnerDac      = partnerDac;
     this.transactionDac  = transactionDac;
     this.bringForwardDac = bringForwardDac;
     this.identityService = identityService;
 }
コード例 #2
0
 public TransactionController(
     IBudgetDac budgetDac,
     IPartnerDac partnerDac,
     ITransactionDac transactionDac,
     IIncomeReceiptDac incomeReceiptDac,
     IBringForwardDac bringForwardDac,
     IIdentityService identityService
     )
 {
     this.transactionDac   = transactionDac;
     this.incomeReceiptDac = incomeReceiptDac;
     this.bringForwardDac  = bringForwardDac;
     this.identityService  = identityService;
     this.budgetDac        = budgetDac;
     this.partnerDac       = partnerDac;
 }
コード例 #3
0
 public PartnerController(IPartnerDac partnerDac)
 {
     this.partnerDac = partnerDac;
 }