예제 #1
0
 public RentBll(OfferBll offerBll, string customerEmail, bool insuranceCase)
 {
     Customer       = new CustomerBll();
     OfferBll       = offerBll;
     StartDate      = DateTime.Now.Subtract(new TimeSpan(3, 0, 0, 0));
     Customer.Email = customerEmail;
     InsuranceCase  = insuranceCase;
 }
예제 #2
0
 public int GetShareCost() => InsuranceCase?OfferBll.CountShareCost(DateTime.Now.Subtract(StartDate).Days) + 150 : OfferBll.CountShareCost(DateTime.Now.Subtract(StartDate).Days);