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 IControleRepository : IGenericRepository { void Delete(long id); IEnumerable FindByCustomerId(long id); Controle FindById(long id); Controle Merge(Controle controle); Controle SaveOrUpdate(Controle controle); IEnumerable SelectDocumentIds(long id); } }