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 ISeguradoraEnderecoRepository : IGenericRepository { void Delete(long id); SeguradoraEndereco FindById(long id); List FindBySeguradora(long empresa, long id); SeguradoraEndereco Merge(SeguradoraEndereco endereco); List Merge(List enderecos, Seguradora seguradora, long empresa); SeguradoraEndereco SaveOrUpdate(SeguradoraEndereco endereco); } }