Add files via upload

This commit is contained in:
gopi17701 2018-09-23 12:23:22 -04:00 committed by GitHub
parent 5f2449d78c
commit 8c926b26fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ package com.astute.service;
import com.astute.exceptions.*;
import com.astute.model.PO;
import com.astute.model.PODetail;
import com.astute.model.ServiceType;
import java.sql.Date;
import java.sql.SQLException;
@ -49,6 +50,9 @@ public class POService extends Service{
getDao().createPODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId, remainingQuantity);
}
public List<ServiceType> getServiceTypes() throws AstuteException {
return getDao().getServiceTypes();
}
}