IAppChannelRepository.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.EnumConst;
  5. using GxPress.Result.AppChannel;
  6. namespace GxPress.Repository.Interface.AppChannel
  7. {
  8. public interface IAppChannelRepository : IRepository
  9. {
  10. /// <summary>
  11. /// 获取详情
  12. /// </summary>
  13. /// <param name="id"></param>
  14. /// <returns></returns>
  15. Task<Entity.tede2.AppChannel.AppChannel> GetAsync(int id);
  16. /// <summary>
  17. /// 查询
  18. /// </summary>
  19. /// <returns></returns>
  20. Task<IEnumerable<AppChannelResult>> GetAllAsync(AppChannelConst channelTypeValue);
  21. /// <summary>
  22. /// 删除
  23. /// </summary>
  24. /// <param name="id"></param>
  25. /// <returns></returns>
  26. Task<bool> DeleteAsync(int id);
  27. /// <summary>
  28. /// 修改
  29. /// </summary>
  30. /// <param name="model"></param>
  31. /// <returns></returns>
  32. Task<bool> UpdateAsync(Entity.tede2.AppChannel.AppChannel request);
  33. /// <summary>
  34. /// 添加
  35. /// </summary>
  36. /// <param name="model"></param>
  37. /// <returns></returns>
  38. Task<bool> InsertAsync(Entity.tede2.AppChannel.AppChannel model);
  39. }
  40. }