using Core; using Generator.Repo; namespace Generator.Services; public class ExportService { private readonly ExportRepo _repo; public ExportService(ExportRepo repo) { _repo = repo; } public void ExportAsPuml(ISpecFile file) { _repo.PlantUml(file); } }