12345678910111213141516171819202122232425262728293031323334353637 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Request.App.OftenContact;
- using GxPress.Result.App.OftenContact;
- namespace GxPress.Service.Interface.OftenContact
- {
- public interface IOftenContactService: IService
- {
-
-
-
-
- Task<bool> DeleteAsync(int id);
-
-
-
-
-
- Task<IEnumerable<OftenContactInfo>> GetOftenContacts(OftenContactSearchRequest request);
-
-
-
-
-
- Task<OftenContactDto> InsertAsync(OftenContactInRequest request, int userId);
-
-
-
-
-
-
- Task<bool> SetBlackUserAsync(int userId, int blackUserId);
- }
- }
|