Exemplo n.º 1
0
 public Select(DataAccess.AutoMerge.Base.ISelect selectDAL, 
                 BusinessLogic.Branch.Base.ISelect branchSelectBLL,
                 BusinessLogic.AutoMergeSubscription.Base.ISelect autoMergeSubscriptionBLL,
                 BusinessLogic.AutoMergeOptions.Base.ISelect autoMergeOptionsBLL,
                 BusinessLogic.AutoMergeLog.Base.ISelect autoMergeLogSelectBLL)
 {
     this.selectDAL = selectDAL;
     this.branchSelectBLL = branchSelectBLL;
     this.autoMergeSubscriptionBLL = autoMergeSubscriptionBLL;
     this.autoMergeOptionsBLL = autoMergeOptionsBLL;
     this.autoMergeLogSelectBLL = autoMergeLogSelectBLL;
 }
Exemplo n.º 2
0
 public Trigger(BusinessLogic.Core.Base.ISettings settingsBLL,
                 BusinessLogic.Branch.Base.ISelect selectBranchBLL,
                 BusinessLogic.Notifications.Base.ISlack slackNotificationBLL,
                 [Dependency("Svn.ISearchLog")]BusinessLogic.VersionControl.Base.ISearchLog searchLogBLL,
                 [Dependency("Svn.IEligibleRevisions")]BusinessLogic.VersionControl.Base.IEligibleRevisions eligibleRevisions)
 {
     this.settingsBLL = settingsBLL;
     this.selectBranchBLL = selectBranchBLL;
     this.searchLogBLL = searchLogBLL;
     this.slackNotificationBLL = slackNotificationBLL;
     this.eligibleRevisions = eligibleRevisions;
 }
Exemplo n.º 3
0
        public Insert(DataAccess.AutoMerge.Base.IInsert insertDAL, 
                        BusinessLogic.Branch.Base.ISelect branchSelectBLL,
                        BusinessLogic.Branch.Base.IInsert insertBranchBLL,
                        BusinessLogic.AutoMergeSubscription.Base.IUpsert autoMergeSubscriptionUpsertBLL,
						BusinessLogic.AutoMerge.Base.ISchedule scheduleBLL,
                        BusinessLogic.AutoMergeOptions.Base.IUpsert autoMergeOptionsUpsertBLL)
        {
            this.insertDAL = insertDAL;
            this.branchSelectBLL = branchSelectBLL;
            this.insertBranchBLL = insertBranchBLL;
            this.autoMergeSubscriptionUpsertBLL = autoMergeSubscriptionUpsertBLL;
            this.scheduleBLL = scheduleBLL;
            this.autoMergeOptionsUpsertBLL = autoMergeOptionsUpsertBLL;
        }
Exemplo n.º 4
0
 public BranchController(BusinessLogic.Branch.Base.IInsert insertBLL,
                         BusinessLogic.Branch.Base.ISelect selectBLL)
 {
     this.insertBLL = insertBLL;
     this.selectBLL = selectBLL;
 }