public ViewModel()
 {
     instance = new instance
     {  //your mock value for the properties..
         FirstName = "Offer",
         LastName  = "Somthing"
     };
 }
 public ViewModel(Model_A instance)
 {
     this.instance = instance;
 }
Exemplo n.º 3
0
 public ViewModel()
 {
    instance = new instance{//your mock value for the properties..};
 }