Having very little experience in the area I am writing a WPF smart client app communicating to a WCF backend using MVVM and am really struggling to make the right decisions out of all the information out there. Which leads me to a set of questions that I hope can be resolved here by people more experienced in this area.
As an example, one of of the screens will allow for entering an order and adding order lines to the order.
What is used as the model?
On the WCF service I have the following simplified DTO:
public OrderDTO
{
string orderDetails { get; set; }
List<OrderLineDTO> OrderLines { get; set; }
}
public OrderLineDTO
{
int customerId { get; set; }
int productId { get; set; }
double quantity { get; set; }
}
And a WCF service which has the following method:
public OrderService Order
{
CreateOrderResponse CreateOrder(OrderDTO order)
}
In my WPF smart client I then have a reference to the DTO but clearly it does not implement INotifyPropertyChanged
as it is purely for transport.
Questions
Would the recommended approach be to convert these DTOs to a model that implements INotifyPropertyChanged
using Automapper or similar? Or should the DTO be used as the model directly in the ViewModel?
Communicating between view models
Currently, I have an order view with 2 tabs (Order
and OrderLines
) with ViewModels OrderViewModel
and OrderLineViewModel
. On the order tab I have a ComboBox
containing customer Ids and names. When I select a customer on the OrderView
, I need to advise the OrderLineView
that a customer has been selected so that the ComboBox
only shows products belonging to that customer.
Questions
How would the OrderViewModel
communicate to the OrderLineViewModel
in this scenario?
Adding an order line and applying logic / business rules
As the server level application will be used by multiple clients e.g PCs, mobile devices.. I would like to ensure that all the business rules are applied in the server level application. As an example, when an order line is added. if it is of a certain product type it can only be added if the customer has a certain certification.
However, everything I have read about MVVM states that the model is what applies business rules and behaviour - all these examples have implemented the model on the client side. Ideally, I do not want to duplicate the same checks on both the client and the server so I was wondering how one would go about ensuring that this does not happen.
Questions
Do you allow the user to add an invalid line, send the request to the server, let the server apply the relevant rules and return the response? Or do you somehow apply the logic in the smart client app before sending the request to the server?
I really want to get better in all the areas I have outlined here and I thank you in advance for any responses.
Thanks
Alex
Edit: Thanks everyone for your contribution as it has helped me become a little more clear in terms of the best way forward. All the answers were good but I have decided to accept Uri's answer as it fits best with my thoughts at this stage. However, I am still not sure of the best way to handle the conversion from an Id of the DTO to a SelectedItem in the ItemsSource which is a list of ViewModels. I can see that a Converter might work but I am going to try and find another solution. Thanks Alex