using Govor.Core.Models; using Govor.Core.Repositories.Invaites; namespace Govor.Data.Repositories; public class InvitesRepository : IInvitesRepository { public Task> GetAllAsync() { throw new NotImplementedException(); } public Task GetByIdAsync(Guid id) { throw new NotImplementedException(); } public Task GetByCodeAsync(string code) { throw new NotImplementedException(); } public Task> 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(); } }