-
- using MTWorkHR.Application.Models;
- using MTWorkHR.Core.Entities;
- using System.Threading.Tasks;
- namespace MTWorkHR.Application.Services.Interfaces
- {
- public interface IContractPdfService
- {
- Task GenerateContractPdf(string outputPath, long contractId); // Adjust parameters as needed
- }
- }
|