26 lines
549 B
C#
26 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Auth.Domain;
|
|
|
|
namespace Auth.Core.Services.HR.Users;
|
|
|
|
public class GroupService
|
|
{
|
|
private readonly Context context;
|
|
|
|
public GroupService(Context context)
|
|
{
|
|
this.context = context;
|
|
}
|
|
|
|
// public async Task CreateGroup(GroupVM groupVM) { }
|
|
|
|
// public async Task ChangeUserGroup(GroupVM groupVM) { }
|
|
|
|
// public async Task GetAllGroups(GroupVM groupVM) { }
|
|
|
|
// public async Task GetGroup(GroupVM groupVM) { }
|
|
}
|