presence_new/domain/UseCase/IAdminUseCase.cs

17 lines
486 B
C#
Raw Normal View History

2024-12-13 07:21:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using domain.Models.ResponseModels;
namespace domain.UseCase
{
public interface IAdminUseCase
{
IEnumerable<GroupResponse> GetAllGroupsWithStudents();
UserResponse GetStudentInfo(int userId);
bool AddStudents(string GroupName, List<string> Students);
bool DeleteGroup(int groupId);
bool DeleteUserFromGroup(int userId, int groupId);
}
}