10 lines
267 B
C#
10 lines
267 B
C#
using GestionIntegral.Api.Models.Suscripciones;
|
|
using System.Data;
|
|
|
|
namespace GestionIntegral.Api.Data.Repositories.Suscripciones
|
|
{
|
|
public interface ILoteDebitoRepository
|
|
{
|
|
Task<LoteDebito?> CreateAsync(LoteDebito nuevoLote, IDbTransaction transaction);
|
|
}
|
|
} |