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