8 lines
224 B
C#
8 lines
224 B
C#
|
|
namespace BelegeingangDatabase.Repositories
|
|
{
|
|
public interface IAttachmentRepository : IGenericRepository<Attachment>
|
|
{
|
|
// Zusätzliche spezifische Methoden können hier hinzugefügt werden
|
|
}
|
|
} |