12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- namespace GxPress.Service.Implement.OftenContact
- {
- public partial class OftenContactService
- {
-
-
-
-
-
-
- public async Task<bool> SetBlackUserAsync(int userId, int blackUserId)
- {
- return await _repository.SetBlackUserAsync(userId, blackUserId);
- }
- }
- }
|