12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Datory;
- namespace GxPress.Repository.Interface.Friends
- {
- public interface IFriendsRepository : IRepository
- {
-
-
-
-
-
- Task<int> AddAsync(Entity.Friends model);
-
-
-
-
-
-
- Task<bool> DeleteAsync(IEnumerable<int> friendsIds, int userId);
-
-
-
-
-
-
- Task<IEnumerable<int>> GetFriendsIdsAsync(int userId, int addressBookGroupId);
-
-
-
-
-
-
-
- Task<bool> UpdateAddressBookGroupId(IEnumerable<int> friendsUserId, int userId, int addressBookGroupId);
-
-
-
-
-
-
- Task<bool> ExistsAsync(int friendsUserId, int userId);
- }
- }
|