|
|
|
@ -34,14 +34,14 @@ namespace Shentun.Peis |
|
|
|
using (var unitOfWork = _unitOfWorkManager.Begin(isTransactional: true)) |
|
|
|
{ |
|
|
|
var items = await _appService.GetLisRequestReportByPatientRegisterIdAsync(new PatientRegisterIdInputDto() |
|
|
|
{ PatientRegisterId = new Guid("3a126cec-ae51-8273-67aa-3003d6e7a70b") }); |
|
|
|
{ PatientRegisterId = new Guid("3a12707e-bc54-129e-64d0-8cf5556a023c") }); |
|
|
|
_output.WriteLine(items.Count().ToString()); |
|
|
|
foreach (var item in items) |
|
|
|
{ |
|
|
|
_output.WriteLine(item.PatientName + "," + item.CustomerOrgName + "," + |
|
|
|
item.DepartmentName + item.AsbitemNames); |
|
|
|
} |
|
|
|
await unitOfWork.CompleteAsync(); |
|
|
|
//await unitOfWork.CompleteAsync();
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|