public SubscriptionController(
            IDataStorage dataStorage,
            IReporting reporting)
        {
            this.dataStorage = dataStorage;
            this.reporting = reporting;

            this.userActivityLogger = new UserActivityLogger(this.reporting);
        }
Beispiel #2
0
        public SubscriptionController(
            IDataStorage dataStorage,
            IReporting reporting)
        {
            this.dataStorage = dataStorage;
            this.reporting   = reporting;

            this.userActivityLogger = new UserActivityLogger(this.reporting);
        }
        public SessionController(
            IAuthenticationService authService,
            IReporting reporting)
        {
            this.authService = authService;
            this.reporting = reporting;

            this.userActivityLogger = new UserActivityLogger(this.reporting);
        }
Beispiel #4
0
        public SessionController(
            IAuthenticationService authService,
            IReporting reporting)
        {
            this.authService = authService;
            this.reporting   = reporting;

            this.userActivityLogger = new UserActivityLogger(this.reporting);
        }