(function (I, D) { I.loadOrdersFromUpload = async function (file) { const text = await file.text(); return { text, orders: D.parseCSV(text) }; }; })(window.App.Infrastructure, window.App.Domain);