1 package org.kuali.coeus.common.api.org; 2 3 import org.kuali.coeus.sys.api.model.ScaleTwoDecimal; 4 5 import java.util.Date; 6 7 public interface OrganizationIndirectcostContract { 8 9 Integer getIdcNumber(); 10 11 String getOrganizationId(); 12 13 ScaleTwoDecimal getApplicableIndirectcostRate(); 14 15 Date getEndDate(); 16 17 String getIdcComment(); 18 19 Integer getIdcRateTypeCode(); 20 21 Date getRequestedDate(); 22 23 Date getStartDate(); 24 }