using Gestor.Infrastructure.Entities.Seguros; using Gestor.Infrastructure.Repository.Generic; using Gestor.Model.Domain.Seguros; using System; using System.Collections.Generic; namespace Gestor.Infrastructure.Repository.Interface { public interface IDetalheExtratoRepository : IGenericRepository { void Delete(long id); List Find(long id); DetalheExtrato FindById(long id); List FindByLongId(long? id); DetalheExtrato FindByParcelaId(long id); DetalheExtrato Merge(DetalheExtrato parcela); DetalheExtrato SaveOrUpdate(DetalheExtrato parcela); } }