Ejemplo n.º 1
0
 public RatingsService(IRatingRepository ratingRepository, IPostMockRepository postMockRepository,
                       IRatingTypeRepository ratingTypeRepository, IUserMockRepository userMockRepository, IMapper mapper)
 {
     _ratingRepository     = ratingRepository;
     _postMockRepository   = postMockRepository;
     _ratingTypeRepository = ratingTypeRepository;
     _userMockRepository   = userMockRepository;
     this.mapper           = mapper;
 }
Ejemplo n.º 2
0
 public ActionService(IProjectUserRepository projectUserRepository, IRatingTypeRepository ratingTypeRepository,
                      IRatingRepository ratingRepository, IActionTypeRepository actionTypeReposotory) //, IActionRepository actionRepository)
 {
     _projectUserRepository = projectUserRepository;
     _actionTypeRepository  = actionTypeReposotory;
     // _actionRepository = actionRepository;
     _ratingTypeRepository = ratingTypeRepository;
     _ratingRepository     = ratingRepository;
 }
Ejemplo n.º 3
0
 public UserController(ActionService actionService, IProjectUserRepository projectUserRepository, IRatingTypeRepository ratingTypeRepository,
                       IRatingRepository ratingRepository, IActionTypeRepository actionTypeReposotory)//, IActionRepository actionRepository)
 {
     _projectUserRepository = projectUserRepository;
     _actionTypeRepository  = actionTypeReposotory;
     // _actionRepository = actionRepository;
     _ratingTypeRepository = ratingTypeRepository;
     _ratingRepository     = ratingRepository;
     _actionService        = actionService;
 }
Ejemplo n.º 4
0
 public PDRService(IUserRepository userRepository, IPDReviewRepository pdReview, IObjectiveRepository objective, IObjectiveTypeRepository objectiveType, ISuccessFactorRepository sucfact, ISuccessFactorTypeRepository sucfacType, IPDRStatusRepository pdrSt, IRatingTypeRepository ratTypeerep, IRatingRepository rateRep, IPersonalDevelopmentPlanRepository pdpRep, IDevelopmentCategoryRepository devcat, IHRProPersonnelRecordRepository hrPro, IUnitOfWork unitOfWork)
 {
     this._UserRepository          = userRepository;
     this._PDRReviewRepository     = pdReview;
     this._ObjectiveRepository     = objective;
     this._ObjectiveTyperepository = objectiveType;
     this.unitOfWork                          = unitOfWork;
     this._PDRStatusRepository                = pdrSt;
     this._Ratingrepository                   = rateRep;
     this._RatingTypeRepository               = ratTypeerep;
     this._SuccessFactorRepository            = sucfact;
     this._SuccessFactorTypeRepository        = sucfacType;
     this._IPersonalDevelopmentPlanRepository = pdpRep;
     this._IDevelopmentCategoryRepository     = devcat;
     this._IHRProPersonnelRecordRepository    = hrPro;
 }
Ejemplo n.º 5
0
 public RatingTypeController(IRatingTypeRepository ratingTypeRepository)
 {
     _ratingTypeRepository = ratingTypeRepository;
 }
Ejemplo n.º 6
0
 public RatingTypeController(IRatingTypeRepository RatingTypeRepository)
 {
     _RatingTypeService = new RatingTypeService(RatingTypeRepository);
 }
 public RatingTypeService(IRatingTypeRepository ratingTypeRepository, IMapper mapper)
 {
     _ratingTypeRepository = ratingTypeRepository;
     this.mapper           = mapper;
 }
Ejemplo n.º 8
0
 public RatingTypeService(IRatingTypeRepository RatingTypeRepository)
 {
     _RatingTypeRepository = RatingTypeRepository;
 }
Ejemplo n.º 9
0
 public RatingService(IRateChoiceRepository choiceRepository, IRatingTypeRepository typeRepository)
 {
     TypeRepository   = typeRepository;
     ChoiceRepository = choiceRepository;
 }