| 123456789101112131415 |
- using System.Common;
- using System;
- using System.Model;
- using System.Threading.Tasks;
- using System.Collections.Generic;
- namespace System.IRepositories
- {
- public interface IBus_OrderDetailRepository : IRepository<T_Bus_OrderDetail>
- {
- Task<int> GetVCount(string count, string whereExpression);
- Task<List<T_Bus_OrderDetail>> GetListVDetail(string where);
- }
- }
|