public ActionPlanController(IActionPlanApplicationService serviceActionPlan,
                             IObjectiveApplicationService serviceObjective,
                             IMarkApplicationService serviceMark,
                             IJobApplicationService serviceJob,
                             ICoachingProcessApplicationService serviceCoachingProcess)
 {
     this._serviceActionPlan      = serviceActionPlan;
     this._serviceObjective       = serviceObjective;
     this._serviceMark            = serviceMark;
     this._serviceJob             = serviceJob;
     this._serviceCoachingProcess = serviceCoachingProcess;
 }
 public ActionPlanController(IActionPlanApplicationService serviceActionPlan,
     IObjectiveApplicationService serviceObjective,
     IMarkApplicationService serviceMark,
     IJobApplicationService serviceJob,
     ICoachingProcessApplicationService serviceCoachingProcess)
 {
     this._serviceActionPlan = serviceActionPlan;
     this._serviceObjective = serviceObjective;
     this._serviceMark = serviceMark;
     this._serviceJob = serviceJob;
     this._serviceCoachingProcess = serviceCoachingProcess;
 }
Example #3
0
 public ObjectiveApplicationService(IObjectiveRepository repository, IMarkApplicationService serviceMark, IUnitOfWork unitOfWork) : base(unitOfWork)
 {
     this._repository  = repository;
     this._serviceMark = serviceMark;
 }
 public ObjectiveApplicationService(IObjectiveRepository repository, IMarkApplicationService serviceMark, IUnitOfWork unitOfWork)
     : base(unitOfWork)
 {
     this._repository = repository;
     this._serviceMark = serviceMark;
 }