|
using IRaCIS.Core.Domain.Interfaces;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Repository
|
|
{
|
|
public class CostStatisticsRepository:BaseRepository<Payment>,IPaymentRepository
|
|
{
|
|
public CostStatisticsRepository( IRaCISDBContext db) : base( db)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |