14 lines
391 B
C#
14 lines
391 B
C#
// Repositories/AttachmentRepository.cs
|
|
|
|
namespace BelegeingangDatabase.Repositories
|
|
{
|
|
public class AttachmentRepository : GenericRepository<Attachment>, IAttachmentRepository
|
|
{
|
|
public AttachmentRepository(BelegeingangContext context) : base(context)
|
|
{
|
|
}
|
|
|
|
// Zusätzliche spezifische Methoden können hier implementiert werden
|
|
}
|
|
}
|