示例#1
0
 public ActionPlanController(IBaseRepository <ActionPlan> baseRepository, IActionPlanRepository actionPlanRepository) : base(baseRepository)
 {
     this.actionPlanRepository = actionPlanRepository;
 }
示例#2
0
 public void Dispose()
 {
     _repository = null;
 }
示例#3
0
 public ActionPlanApplicationService(IActionPlanRepository repository, IUnitOfWork unitOfWork) : base(unitOfWork)
 {
     this._repository = repository;
 }
 public void Dispose()
 {
     _repository = null;
 }
 public ActionPlanApplicationService(IActionPlanRepository repository, IUnitOfWork unitOfWork)
     : base(unitOfWork)
 {
     this._repository = repository;
 }
 public ActionPlanService(IActionPlanRepository actionPlanRepository)
 {
     _actionPlanRepository = actionPlanRepository;
 }