2024-11-16 21:45:57 +00:00
|
|
|
|
using data.DAO;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace data.Repository
|
|
|
|
|
{
|
|
|
|
|
public interface IGroupRepository
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<GroupDAO> getAllGroup();
|
2024-12-07 15:33:26 +00:00
|
|
|
|
public Task<IEnumerable<GroupDAO>> getAllGroupAsync();
|
2024-11-16 21:45:57 +00:00
|
|
|
|
public bool addGroup(GroupDAO group);
|
2024-11-18 16:36:42 +00:00
|
|
|
|
public bool addGroupWithStudents(GroupDAO group, IEnumerable<UserDAO> userDAOs);
|
2024-11-16 21:45:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|