13 lines
392 B
C#
13 lines
392 B
C#
using IRaCIS.Core.Domain.Interfaces;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Repository
|
|
{
|
|
public class TrialRevenuesPriceVerificationRepository: BaseRepository<TrialRevenuesPriceVerification>, ITrialRevenuesPriceVerificationRepository
|
|
{
|
|
public TrialRevenuesPriceVerificationRepository(IRaCISDBContext db) : base(db)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |