1234567891011121314151617 |
- using Hotline.CallCenter.Calls;
- using Hotline.Orders;
- using Hotline.Repository.SqlSugar.CallCenter;
- using XF.Domain.Repository;
- namespace Hotline.Tests.Repository;
- public class CallNativeRepositoryTest
- {
- private readonly ICallNativeRepository _callNativeRepository;
- private readonly IRepository<Order> _orderRepository;
- public CallNativeRepositoryTest(ICallNativeRepository callNativeRepository, IRepository<Order> orderRepository)
- {
- _callNativeRepository = callNativeRepository;
- _orderRepository = orderRepository;
- }
- }
|