public AppController(IAppMgr appMgr,
     IAppValidator appvalidator)
 {
     _appMgr = appMgr;
     _appValidator = appvalidator;
 }
 public AppValidator(IAppMgr appMgr)
 {
     _appMgr = appMgr;
 }