presence_new/data/Repository/IAdminRepository.cs

16 lines
450 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using presence.data.RemoteData.RemoteDataBase.DAO;
namespace data.Repository
{
public interface IAdminRepository
{
2024-12-13 07:21:14 +00:00
bool AddStudents(GroupDao group, List<UserDao> students);
IEnumerable<GroupDao> GetAllGroupsWithStudents();
UserDao GetStudentInfo(int userId);
bool RemoveUserById(int userId, int groupId);
}
}