Using Visual Studio 2012 I have added a service reference to a remote webservice. It is configured to use asynchronous calls. The application uses WPF with the MVVM pattern.
One model class is called Projects and exposes a property ProjectList which can be used in the view model. The ProjectList shall contain a list of projects which are retrieved from the service.
So far I call this service from the view model like this (actually it's invoked by a command):
Projects.ProjectList = proxy.getProjectList(username, password);
Yes, it works but from what I have learned the "business logic" should not be handled by the view model. So how and where would I call the service and set the model's ProjectList property when the view fires a command in the view model?
IProductsRepository.GetProducts()would return aList<Product>:) – Rachel Jan 30 at 20:53