Exemplo n.º 1
0
        public Compensation GetById(string id)
        {
            if (!String.IsNullOrEmpty(id))
            {
                var employee = _employeeRepository.GetById(id);
                return(_compensationRepository.GetByEmployee(employee));
            }

            return(null);
        }