コード例 #1
0
 public HelpActivity(
     IActivityContextController activityContextController,
     IStatusController statusController) :
     base(statusController)
 {
     this.activityContextController = activityContextController;
 }
コード例 #2
0
        public UpdatedUpdateActivity(
            IActivityContextController activityContextController,
            IDataController <AccountProduct> accountProductDataController,
            IConfirmDelegate <AccountProduct> confirmAccountProductUpdatedDelegate,
            IIndexController <long> updatedIndexController,
            IStatusController statusController) : base(statusController)
        {
            this.activityContextController = activityContextController;

            this.accountProductDataController         = accountProductDataController;
            this.confirmAccountProductUpdatedDelegate = confirmAccountProductUpdatedDelegate;

            this.updatedIndexController = updatedIndexController;
        }
コード例 #3
0
        public PageResultUpdateActivity(
            AC activityContext,
            IActivityContextController activityContextController,
            IGetPageResultsAsyncDelegate <PageType> getPageResultsAsyncDelegate,
            IItemizeDelegate <IList <PageType>, DataType> itemizePageResultsDelegate,
            IDataController <DataType> dataController,
            IRecordsController <string> activityRecordsController,
            IStatusController statusController) :
            base(statusController)
        {
            this.activityContext           = activityContext;
            this.activityContextController = activityContextController;

            this.getPageResultsAsyncDelegate = getPageResultsAsyncDelegate;
            this.itemizePageResultsDelegate  = itemizePageResultsDelegate;

            this.dataController            = dataController;
            this.activityRecordsController = activityRecordsController;
        }