9 lines
282 B
C#
9 lines
282 B
C#
|
|
using System.Data;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Data.Repositories.Distribucion
|
||
|
|
{
|
||
|
|
public interface IPorcPagoRepository {
|
||
|
|
Task<bool> DeleteByPublicacionIdAsync(int idPublicacion, int idUsuarioAuditoria, IDbTransaction transaction);
|
||
|
|
}
|
||
|
|
}
|