Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. getDisplayPrice :: Maybe HomeType -> Maybe MaxPrice -> Maybe MinPrice -> Maybe Price -> Maybe ContactForPricing -> String
  2. getDisplayPrice _ _ _ _ (Just x) -> str (x)
  3. getDisplayPrice _ _ _ (Just price) _ -> str (price)
  4. getDisplayPrice (Just building) (Just max_price) (Just min_price) _ _ -> (str min_price) ++ (str max_price)
  5. getDisplayPrice _ _ _ _ _ -> "Contact For Pricing"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement