Related Models: Group.cs
Related Interfaces:
IGroupService.cs
Fields
Constructor
Properties
GroupService does not have any properties.
Documentation Index
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.
IGroupService.cs
| Field Name | Type | Description |
|---|---|---|
_dbContextFactory | IDbContextFactory<NumaContext> | DbContextFactory for instantiating instances of NumaContext on-demand |
public GroupService( IDbContextFactory<NumaContext> dbContextFactory )
{
_dbContextFactory = dbContextFactory ?? throw new ArgumentNullException( nameof( dbContextFactory ) );
}
GroupService does not have any properties.
| Method Name | Description | Parameters | Return Type |
|---|---|---|---|
UserIsInGroup | Checks if a specific user is in a specific group | string,string | Task<bool> |
namespace Numa.Interfaces
{
public interface IGroupService
{
Task<bool> UserIsInGroup( string userId, string groupId );
}
}
