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

18 lines
498 B
C#

using CPRNIMS.Infrastructure.Models.Account;
using CPRNIMS.Infrastructure.ViewModel.Finance;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Domain.UIContracts.Finance
{
public interface IRR
{
Task<List<RRVM>> GetAllClosedPO(User user, RRVM viewModel);
Task<List<RRVM>> GetRRDetailByPO(User user, RRVM viewModel);
Task<RRVM> PostPutPayment(User user, RRVM viewModel);
}
}