14 lines
344 B
C#
14 lines
344 B
C#
using IRaCIS.Core.Domain.Interfaces;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Repository
|
|
{
|
|
public class PaymentAdjustmentRepository : BaseRepository<PaymentAdjustment>, IPaymentAdjustmentRepository
|
|
{
|
|
public PaymentAdjustmentRepository( IRaCISDBContext db) : base( db)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
} |