19 lines
304 B
C#
19 lines
304 B
C#
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);
|
|
}
|
|
} |