|
@@ -101,6 +101,7 @@ public class OrderControllerTest : TestBase
|
|
|
.With(m => m.Id, Ulid.NewUlid().ToString())
|
|
|
.With(m => m.CallNo, callNo)
|
|
|
.With(m => m.Direction, ECallDirection.In)
|
|
|
+ .With(m => m.IsDeleted , false)
|
|
|
.Create();
|
|
|
await _callNativeRepository.AddAsync(inDto);
|
|
|
|
|
@@ -109,6 +110,7 @@ public class OrderControllerTest : TestBase
|
|
|
.With(m => m.Direction, ECallDirection.Out)
|
|
|
.With(m => m.CallNo, callNo)
|
|
|
.With(m => m.AudioFile, string.Empty)
|
|
|
+ .With(m => m.IsDeleted , false)
|
|
|
.Create();
|
|
|
await _callNativeRepository.AddAsync(inDto2);
|
|
|
var callOrder = new CallidRelation
|