Registration rework

+ InvitesRepository
+ AdminsRepository
+ rework jwt
This commit is contained in:
Artemy
2025-06-24 14:27:08 +07:00
parent 410a1ce1cc
commit ce013eae49
37 changed files with 2084 additions and 29 deletions
@@ -0,0 +1,52 @@
using Govor.Core.Models;
using Govor.Core.Repositories.Invaites;
namespace Govor.Data.Repositories;
public class InvitesRepository : IInvitesRepository
{
public Task<List<Invitation>> GetAllAsync()
{
throw new NotImplementedException();
}
public Task<Invitation> GetByIdAsync(Guid id)
{
throw new NotImplementedException();
}
public Task<Invitation> GetByCodeAsync(string code)
{
throw new NotImplementedException();
}
public Task<List<Invitation>> GetAdminsInvitesAsync()
{
throw new NotImplementedException();
}
public Task AddAsync(Invitation invitation)
{
throw new NotImplementedException();
}
public Task UpdateAsync(Invitation invitation)
{
throw new NotImplementedException();
}
public Task RemoveAsync(Invitation invitation)
{
throw new NotImplementedException();
}
public bool Exist(Invitation invitation)
{
throw new NotImplementedException();
}
public bool Exist(Guid guid)
{
throw new NotImplementedException();
}
}