public ImpersonateController()
     : base()
 {
     this._ampServiceLayer = new AMPServiceLayer();
     this._identityManager = new DemoIdentityManager();
 }
 public ImpersonateController(IAmpServiceLayer serviceLayer, IIdentityManager identityManager)
     : base(serviceLayer, identityManager)
 {
     this._ampServiceLayer = serviceLayer;
     this._identityManager = identityManager;
 }
Exemplo n.º 3
0
 public BaseController(IAmpServiceLayer serviceLayer, IIdentityManager identityManager)
 {
     this._serviceLayer    = serviceLayer;
     this._identityManager = identityManager;
 }
Exemplo n.º 4
0
 public BaseController()
 {
     this._serviceLayer    = new AMPServiceLayer();
     this._identityManager = new DemoIdentityManager();
 }
 public DashboardController(IAmpServiceLayer serviceLayer, IIdentityManager identityManager)
     : base(serviceLayer, identityManager)
 {
     this._ampServiceLayer = serviceLayer;
     this._identityManager = identityManager;
 }
 public DashboardController()
     : base()
 {
     this._ampServiceLayer = new AMPServiceLayer();
     this._identityManager = new DemoIdentityManager();
 }
Exemplo n.º 7
0
 public WorkflowController()
     : base()
 {
     this._ampServiceLayer = new AMPServiceLayer();
     this._identityManager = new DemoIdentityManager();
 }