Example #1
0
 public SelfEvaluationService(ISelfEvaluationRepository selfEvaluationRepository,
                              IFileUploadRepository selfFileUploadRepository,
                              IEmployeeRepository selfEmployeeRepository)
     : base(selfEvaluationRepository)
 {
     _selfEvaluationRepository = selfEvaluationRepository;
     _selfFileUploadRepository = selfFileUploadRepository;
     _selfEmployeeRepository   = selfEmployeeRepository;
 }
Example #2
0
 public ServiceBase(ISelfEvaluationRepository selfEvaluationRepository)
 {
     this.selfEvaluationRepository = selfEvaluationRepository;
 }