You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
623 B
21 lines
623 B
using DTO;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DTOToEntity
|
|
{
|
|
public interface IGroupService : IService<GroupDTO>
|
|
{
|
|
Task<PageResponse<GroupDTO>> GetByNum(int index, int count, int num);
|
|
Task<PageResponse<GroupDTO>> GetBySector(int index, int count, string sector);
|
|
Task<PageResponse<GroupDTO>> GetByYear(int index, int count, int year);
|
|
|
|
Task<UserDTO> AddUserToGroup(long idUser, long idGroup);
|
|
|
|
Task<VocabularyListDTO> AddVocabularyListToGroup(long vocabId, long groupId);
|
|
}
|
|
}
|