11 lines
257 B
C#
11 lines
257 B
C#
using MyOffice.Data.Models.Verifications;
|
|
|
|
namespace MyOffice.Data.Repositories.Item;
|
|
|
|
|
|
public interface IVerificationCodeRepository
|
|
{
|
|
VerificationCode? GetByCode(string code);
|
|
bool Add(VerificationCode entity);
|
|
bool Update(VerificationCode entity);
|
|
} |