1 2 3 4 5 6 7 8module Duets.Entities.Rental /// Retrieves the due date from the rental let dueDate rental = match rental.RentalType with | Seasonal nextPaymentDate | OneTime(_, nextPaymentDate) -> nextPaymentDate
1 2 3 4 5 6 7 8
module Duets.Entities.Rental /// Retrieves the due date from the rental let dueDate rental = match rental.RentalType with | Seasonal nextPaymentDate | OneTime(_, nextPaymentDate) -> nextPaymentDate