ISellRepository.cs 514 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using GxPress.Common.Page;
  6. using GxPress.Entity;
  7. using GxPress.Request.Sell;
  8. using GxPress.Result.sell;
  9. using Datory;
  10. namespace GxPress.Repository.Interface
  11. {
  12. public interface ISellRepository:IRepository
  13. {
  14. Task<bool> InsertAsync(IEnumerable<Sell> sells);
  15. Task<PagedList<Sell>> GetPageListAsync(PageParameter request);
  16. Task<SellResult> GetSellChartAsync(SellRequest request);
  17. }
  18. }