Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Handles logic related to the Group model.
Group
IGroupService.cs
_dbContextFactory
IDbContextFactory<NumaContext>
DbContextFactory
NumaContext
public GroupService( IDbContextFactory<NumaContext> dbContextFactory ) { _dbContextFactory = dbContextFactory ?? throw new ArgumentNullException( nameof( dbContextFactory ) ); }
GroupService
UserIsInGroup
string
Task<bool>
namespace Numa.Interfaces { public interface IGroupService { Task<bool> UserIsInGroup( string userId, string groupId ); } }