public PerformanceController(IEmployeePerformanceRepository repo, ITaskRepository trepo, IAttendanceRepository arepo, IUnitOfWork unitofWork, IMapper mapper)
 {
     _mapper     = mapper;
     _unitofwork = unitofWork;
     _repo       = repo;
     _arepo      = arepo;
     _trepo      = trepo;
 }
 public EmployeePerformanceService(IEmployeePerformanceRepository employeePerformanceRepository, IPerformanceScoreRepository performanceScoreRepository)
 {
     _employeePerformanceRepository = employeePerformanceRepository;
     _performanceScoreRepository    = performanceScoreRepository;
 }