public TemplateController(
     string primaryTemplateTitle,
     IStashController <List <T> > templateStashController,
     ICollectionController collectionController)
 {
     this.PrimaryTemplate         = primaryTemplateTitle;
     this.templateStashController = templateStashController;
     this.collectionController    = collectionController;
 }
Beispiel #2
0
 public CorrectSettingsActivity(
     IStashController <Settings> settingsStashController,
     IStatusController statusController,
     params ICorrectAsyncDelegate <Settings>[] correctSettingsDelegates) :
     base(statusController)
 {
     this.settingsStashController  = settingsStashController;
     this.correctSettingsDelegates = correctSettingsDelegates;
 }
Beispiel #3
0
        public DataController(
            IStashController <Dictionary <long, Type> > stashController,
            IConvertDelegate <Type, long> convertProductToIndexDelegate,
            IRecordsController <long> recordsController,
            IStatusController statusController,
            params ICommitAsyncDelegate[] additionalCommitDelegates)
        {
            this.stashController = stashController;

            this.convertProductToIndexDelegate = convertProductToIndexDelegate;

            this.recordsController = recordsController;

            this.statusController          = statusController;
            this.additionalCommitDelegates = additionalCommitDelegates;
        }
Beispiel #4
0
 public CookiesController(
     IStashController<Dictionary<string, string>> cookieStashController,
     IStrongTypeSerializationController<(string, string), string> cookieSerializationController,
 public StoredHashController(
     IStashController <Dictionary <string, string> > precomputedHashesStashController)
 {
     this.precomputedHashesStashController = precomputedHashesStashController;
 }