pr1/presence/data/Repository/IAdminRepository.cs

16 lines
453 B
C#
Raw Normal View History

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