コード例 #1
0
ファイル: BillService.cs プロジェクト: aquaraga/billtracker
 public BillService(IBillContext billContext)
 {
     this.billContext = billContext;
 }
コード例 #2
0
 public PaymentScheduleService(IBillContext billContext, IScheduleFilters scheduleFilters)
 {
     this.billContext     = billContext;
     this.scheduleFilters = scheduleFilters;
 }