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 IControleSinistroRepository : IGenericRepository { void Delete(long id); void DeleteByItem(long id); void DeleteRange(List ids); ControleSinistro FindById(long id); List FindByIdItem(long id); bool HasSinistro(long id); ControleSinistro Merge(ControleSinistro controle); ControleSinistro SaveOrUpdate(ControleSinistro controle); } }