예제 #1
0
파일: PriceModel.cs 프로젝트: ParkEasy/api
 public PriceModel(double PerHourPrice)
 {
     this.PerHour = new PerHourModel(1, PerHourPrice);
 }
예제 #2
0
파일: PriceModel.cs 프로젝트: ParkEasy/api
 public PriceModel(double PerHourPrice, double FullDayPrice)
 {
     this.FullDay = FullDayPrice;
     this.PerHour = new PerHourModel(1, PerHourPrice);
 }