fix(EGDbContext): add Envelope-property to Envelope-History relation definition on model builder
This commit is contained in:
@@ -42,6 +42,6 @@ public class ReadHistoryQueryHandler : IRequestHandler<ReadHistoryQuery, IEnumer
|
||||
query = query.Where(h => h.Status == request.Status);
|
||||
|
||||
var hists = await query.ToListAsync(cancel);
|
||||
return _mapper.Map<IEnumerable<EnvelopeHistoryDto>>(hists);
|
||||
return _mapper.Map<List<EnvelopeHistoryDto>>(hists);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user