Exemple #1
0
        public Employee RetrieveEmployeeByID(int?id)
        {
            Employee _employee = null;

            try
            {
                _employee = EmployeeAccessor.RetrieveEmployeeWithID(id);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(_employee);
        }