Exemplo n.º 1
0
        public Compensation GetByEmployeeId(string employeeId)
        {
            if (!String.IsNullOrEmpty(employeeId))
            {
                return(_compensationRepository.GetCompensationByEmployeeId(employeeId));
            }

            return(null);
        }