Who is is responsible for asynchronous data fetching in MVVM? For example, my view has 5 different collections of data to fetch, and I would like this to be retrieved asynchornously in predefined order. For this reason I am using Coroutines and Task.
Question: is VM responsible for this, should my model/repository define GetCustomersAsync method, where it would wrap a query in a Task, or that should be left to VM?