11 lines
265 B
C#
11 lines
265 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace data.Repository
|
||
|
{
|
||
|
public interface IAdminRepository
|
||
|
{
|
||
|
void AddStudentsToGroup(int groupId, IEnumerable<int> studentIds);
|
||
|
void AddSubjectsToGroup(int groupId, IEnumerable<int> subjectIds);
|
||
|
}
|
||
|
}
|