using System.Collections.Generic; namespace data.Repository { public interface IAdminRepository { void AddStudentsToGroup(int groupId, IEnumerable studentIds); void AddSubjectsToGroup(int groupId, IEnumerable subjectIds); } }