pr1/presence/data/Repository/IAdminRepository.cs
2024-12-19 20:36:57 +03:00

18 lines
469 B
C#

using Demo.Data.RemoteData.RemoteDataBase.DAO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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);
}
}