nicopasso
03/03/2019, 12:33 PMval productLineLens: Lens<SalesProductLine, ListK<SalesProduct>> =
Lens(
get = { pl -> pl.salesProducts.k() },
set = { pl: SalesProductLine, products -> pl.copy(salesProducts = products )}
)