using GestionIntegral.Api.Models.Comunicaciones; namespace GestionIntegral.Api.Data.Repositories.Comunicaciones { public interface ILoteDeEnvioRepository { Task CreateAsync(LoteDeEnvio lote); Task UpdateAsync(LoteDeEnvio lote); Task> GetAllAsync(int? anio, int? mes); Task GetByIdAsync(int id); } }