NonInventPurchasingSystem/CPRNIMS.Domain/Contracts/Finance/IRR.cs
2026-01-20 07:44:30 +08:00

19 lines
548 B
C#

using CPRNIMS.Infrastructure.Dto.Finance;
using CPRNIMS.Infrastructure.Entities.Finance;
using CPRNIMS.Infrastructure.Entities.Purchasing;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Domain.Contracts.Finance
{
public interface IRR
{
Task<List<ForPayment>> GetAllClosedPO(RRDetailsDto itemDto);
Task<List<ReceivingDetail>> GetRRDetailByPO(RRDetailsDto itemDto);
Task<RRDetail> PostPutPayment(RRDetailsDto itemDto);
}
}