master
parent
dec70d0efd
commit
181a5c0bb7
|
@ -1315,9 +1315,8 @@ namespace IRaCIS.Application.Services
|
|||
|
||||
public List<LaborPayment> GetLaborPaymentList(List<Guid> paymentIds)
|
||||
{
|
||||
var query =
|
||||
//from payment in _paymentRepository.GetAll().Where(t => paymentIds.Contains(t.Id))
|
||||
from payment in _paymentRepository.GetAll()
|
||||
var query = from payment in _paymentRepository.GetAll().Where(t => paymentIds.Contains(t.Id))
|
||||
|
||||
join reviewer in _doctorRepository.GetAll() on payment.DoctorId equals reviewer.Id
|
||||
join payInfo in _doctorPayInfoRepository.GetAll() on payment.DoctorId equals payInfo.DoctorId
|
||||
select new LaborPayment()
|
||||
|
|
Loading…
Reference in New Issue