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;
     }
 }
 public RegisterViewModel(string dpyno, string process, string customer)
 {
     Header        = new Header(dpyno, customer);
     RegisterGroup = new RegisterGroup(dpyno, process, customer);
 }