I have a one ViewModel like this:
public class TaskTrayViewModel<T> : ViewModelBase where T : IBlotterRow, new()
{ }
this ViewModel contains one property :
private Product sp;
public Product selectedProduct
{
get { return sp; }
set
{
sp = value;
}
}
I want to access this property(value) in BlotterCriteriaViewModel (other viewModel). All the viewmodels implements InotiFyPropertyChange. I have read some related questions but didnt get anything. I am not using frameworks(prism,galasoft)?
How to pass the property(value) here? Kindly suggest>