CostCalculationItem/IRaCIS.Core.Infra.EF/Common/AttachmentRepository.cs

15 lines
328 B
C#

using IRaCIS.Core.Domain.Interfaces;
using IRaCIS.Core.Domain.Models;
namespace IRaCIS.Core.Infra.EFCore.Repository
{
public class AttachmentRepository : BaseRepository<Attachment>, IAttachmentRepository
{
public AttachmentRepository( IRaCISDBContext db)
: base( db)
{
}
}
}