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