18 lines
498 B
C#
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);
|
|
}
|
|
}
|