コード例 #1
0
ファイル: DailyBillsRow.cs プロジェクト: peterson1/RentLog
 public DailyBillsRow(LeaseDTO leaseDTO, DailyBillDTO dailyBillDTO, Dictionary <int, CollectorDTO> collectorsDict)
 {
     _collectors = collectorsDict;
     Lease       = leaseDTO;
     DTO         = dailyBillDTO;
     Date        = DTO.GetBillDate();
     Labels      = SetRowLabels();
     Collector   = SetCollector();
 }