19 lines
548 B
C#
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);
|
|
}
|
|
}
|