コード例 #1
0
ファイル: Rate.cs プロジェクト: wlumetsberger/swk5
 public Rate(Tariff tariff, Zone zone, double peakRate, double offPeakRate)
 {
     this.Tariff = tariff;
     this.Zone = zone;
     this.PeakRate = peakRate;
     this.OffPeakRate = offPeakRate;
 }
コード例 #2
0
ファイル: ZoneDao.cs プロジェクト: wlumetsberger/swk5
 public bool Update(Zone zone)
 {
     return database.ExecuteNonQuery(CreateUpdateCommand(zone.Id, zone.Name)) == 1;
 }