package com.hepl.tunefortwo.service;

import java.io.IOException;

import com.itextpdf.text.DocumentException;

public interface PdfService {

    byte[] generatePdf(String html) throws IOException;

    byte[] generatePdfFromDocText(String text) throws DocumentException;

}
