1 package org.kuali.coeus.common.budget.api.personnel;
2
3 public interface TbnPersonService {
4
5 /**
6 * This method will retrieves a {@link TbnPersonContract} by id. The id cannot be null.
7 * @param id the id. Cannot be null.
8 * @return the {@link TbnPersonContract} or null if not found.
9 * @throws java.lang.IllegalArgumentException if the id is blank
10 */
11 TbnPersonContract getTbnPerson(String id);
12 }