Example #1
0
 public EditPersonalInfoScreen(
     EditPersonalInfoScreenViewModel viewModel     = null,
     EditPersonalInfoScreenActionModel actionModel = null,
     Key key = null
     ) : base(key: key)
 {
     this.viewModel   = viewModel;
     this.actionModel = actionModel;
 }
Example #2
0
 public PersonalJobRoleScreen(
     EditPersonalInfoScreenViewModel viewModel = null,
     Action mainRouterPop           = null,
     Action <JobRole> changeJobRole = null,
     Key key = null
     ) : base(key: key)
 {
     this.viewModel     = viewModel;
     this.mainRouterPop = mainRouterPop;
     this.changeJobRole = changeJobRole;
 }