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