package com.sn.sowsysrestapi.domain.service;

import java.time.LocalDate;

public interface IssuePdfReportService {

    byte[] issuePdfReport(String userCode, LocalDate startDate, LocalDate endDate);

}
