|
@@ -129,7 +129,8 @@ namespace Hotline.Application.CallCenter
|
|
|
.WhereIF(direction != null, d => d.CallDirection == direction)
|
|
|
.WhereIF(callStartTimeStart != null, d => d.BeginIvrTime >= callStartTimeStart)
|
|
|
.WhereIF(callStartTimeEnd != null, d => d.BeginIvrTime <= callStartTimeEnd)
|
|
|
- .OrderBy(x => x.CreatedTime).ToListAsync(cancellationToken);
|
|
|
+ .OrderBy(x => x.CreatedTime)
|
|
|
+ .ToListAsync(cancellationToken);
|
|
|
}
|
|
|
}
|
|
|
}
|