presence_new/data/Repository/IAdminRepository.cs
2024-12-13 10:21:14 +03:00

16 lines
450 B
C#

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
{
bool AddStudents(GroupDao group, List<UserDao> students);
IEnumerable<GroupDao> GetAllGroupsWithStudents();
UserDao GetStudentInfo(int userId);
bool RemoveUserById(int userId, int groupId);
}
}