๐Ÿ“ฆ sleepyfran / duets

๐Ÿ“„ Rental.fs ยท 8 lines
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