12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Entity.Topic;
- using Datory;
- namespace GxPress.Repository.Interface
- {
- public interface ITopicAddresseeRepository:IRepository
- {
- Task<int> InsertAsync(TopicAddressee request);
- Task<IEnumerable<TopicAddressee>> GetAllAsync(SqlKata.Query query);
- Task<bool> DeleteAsync(SqlKata.Query query);
- Task<bool> UpdateAsync(SqlKata.Query query);
-
-
-
-
-
- Task<bool> InsertAsync(IEnumerable<TopicAddressee> request);
-
-
-
-
-
- Task<bool> DeletByTopicIdAsync(int topicId);
- }
- }
|