足力健后端,使用.netcore版本,合并1个项目使用

IBus_OrderDetailRepository.cs 386B

123456789101112131415
  1. using System.Common;
  2. using System;
  3. using System.Model;
  4. using System.Threading.Tasks;
  5. using System.Collections.Generic;
  6. namespace System.IRepositories
  7. {
  8. public interface IBus_OrderDetailRepository : IRepository<T_Bus_OrderDetail>
  9. {
  10. Task<int> GetVCount(string count, string whereExpression);
  11. Task<List<T_Bus_OrderDetail>> GetListVDetail(string where);
  12. }
  13. }