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> GetAllClosedPO(User user, RRVM viewModel); Task> GetRRDetailByPO(User user, RRVM viewModel); Task PostPutPayment(User user, RRVM viewModel); } }