You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
652 B
Java

1 year ago
package cokr.xit.interfaces.sntris.service;
import java.util.List;
import cokr.xit.interfaces.sntris.StatusCodeWSDTO;
1 year ago
import cokr.xit.interfaces.sntris.buga.Bu04BugaWSDTO;
9 months ago
import cokr.xit.interfaces.sntris.fileoffer.Ye22InputDTO;
import cokr.xit.interfaces.sntris.fileoffer.Ye22NoticeInfoDTO;
import cokr.xit.interfaces.sntris.prenotice.Bu18WebPreNoticeDTO;
import cokr.xit.interfaces.sntris.prenotice.Bu18WebReturnInfoDTO;
1 year ago
public interface SntrisService {
StatusCodeWSDTO register(String userId, Bu04BugaWSDTO issue);
1 year ago
Bu18WebReturnInfoDTO register(Bu18WebPreNoticeDTO prenotice);
9 months ago
List<Ye22NoticeInfoDTO> getPreNoticeList(Ye22InputDTO input);
1 year ago
}