Skip to content

Commit

Permalink
[JPA] DAO correction visibilité interface
Browse files Browse the repository at this point in the history
  • Loading branch information
gideruette committed Jun 17, 2024
1 parent fd78e93 commit 4362db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TopModel.Generator.Jpa/JpaDaoGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ protected override void HandleClass(string fileName, Class classe, string tag)
}
else
{
fw.WriteLine($"interface {classe.NamePascal}DAO extends {daosInterface} {{");
fw.WriteLine($"public interface {classe.NamePascal}DAO extends {daosInterface} {{");
}

fw.WriteLine();
Expand Down

0 comments on commit 4362db3

Please sign in to comment.