IRuleCarbonCopyRepository.cs 429 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Entity.WorkProcess;
  4. using Datory;
  5. namespace GxPress.Repository.Interface.WorkProcess
  6. {
  7. public interface IRuleCarbonCopyRepository : IRepository
  8. {
  9. Task<int> InsertAsync(RuleCarbonCopy rule);
  10. Task<IEnumerable<RuleCarbonCopy>> GetListAsync(int nodeId);
  11. Task DeleteByNodeIdListAsync(IEnumerable<int> nodeIdList);
  12. }
  13. }