public Compensation GetById(string id) { if (!String.IsNullOrEmpty(id)) { var employee = _employeeRepository.GetById(id); return(_compensationRepository.GetByEmployee(employee)); } return(null); }