12345678910111213141516171819202122232425262728293031 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Entity;
- using Datory;
- namespace GxPress.Repository.Interface
- {
-
-
-
- public interface ICcRepository : IRepository
- {
-
-
-
-
-
- Task<IEnumerable<Cc>> GetNoticeCcByNoticeIdAsync(int noticeId,int sourceType);
- Task<bool> DeleteAsync(int sourceId, int sourceType);
- Task<int> InsertAsync(Cc noticeCc);
-
-
-
-
-
- Task<bool> InsertAsync(List<Cc> noticeCcs);
- }
- }
|