Exemplo n.º 1
0
 public RegisterViewModel(string dpyno, string process, string customer, bool result)
 {
     Header        = new Header(dpyno, customer);
     RegisterGroup = new RegisterGroup(dpyno, process, customer);
     if (result)
     {
         RegistResultMessage = Resources.TextResource.RegistSuccess;
     }
     else
     {
         RegistResultMessage = Resources.TextResource.RegistFailure;
     }
 }
Exemplo n.º 2
0
 public RegisterViewModel(string dpyno, string process, string customer)
 {
     Header        = new Header(dpyno, customer);
     RegisterGroup = new RegisterGroup(dpyno, process, customer);
 }