Example #1
0
 public ApproveController(IApproveWayManager approveWayManager, IPromotionApplyService promotionApplyService,
                          IDeptManager deptManager)
 {
     _approveWayManager     = approveWayManager;
     _promotionApplyService = promotionApplyService;
     _deptManager           = deptManager;
 }
 public AbilityManageController(IAbilityCategoryManager abilityCategoryManager,
                                IAbilityManager abilityManager,
                                IAbilityLevelManager abilityLevelManager,
                                IPromotionWayManager promotionWayManager,
                                IPostAbilityManager postAbilityManager,
                                IPromotionApplyService promotionApplyService,
                                IPostManager postManager)
 {
     _abilityCategoryManager = abilityCategoryManager;
     _abilityManager         = abilityManager;
     _abilityLevelManager    = abilityLevelManager;
     _promotionWayManager    = promotionWayManager;
     _postAbilityManager     = postAbilityManager;
     _promotionApplyService  = promotionApplyService;
     _postManager            = postManager;
 }
Example #3
0
 public UserAbilityController(IAbilityManager abilityManager,
                              IPromotionWayManager promotionWayManager,
                              IPostAbilityManager postAbilityManager,
                              IPromotionApplyService promotionApplyService,
                              IExaminationManager examinationManager,
                              IExampaperManager exampaperManager,
                              IApproveWayManager approveWayManager,
                              IPostManager postManager,
                              IPostLearnRecordManager postLearnRecordManager)
 {
     _abilityManager         = abilityManager;
     _promotionWayManager    = promotionWayManager;
     _postAbilityManager     = postAbilityManager;
     _promotionApplyService  = promotionApplyService;
     _examinationManager     = examinationManager;
     _exampaperManager       = exampaperManager;
     _approveWayManager      = approveWayManager;
     _postManager            = postManager;
     _postLearnRecordManager = postLearnRecordManager;
 }
Example #4
0
 private int ApplyPromotion(IPromotionApplyService promotionApplyService, List <string> skuType)
 {
     return(promotionApplyService.PromotionApply(skuType));
 }
Example #5
0
 public PromotionApplyController(IPromotionApplyService promotionApplyService)
 {
     this.promotionApplyService = promotionApplyService;
 }