IRuleConditionRepository.cs 443 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 IRuleConditionRepository : IRepository
  8. {
  9. Task<int> InsertAsync(RuleCondition conditionRule);
  10. Task<IEnumerable<RuleCondition>> GetListAsync(int nodeId);
  11. Task DeleteByNodeIdListAsync(IEnumerable<int> nodeIdList);
  12. }
  13. }