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 IRiscosDiversosRepository : IGenericRepository { void Delete(long id); void DeleteRange(List ids); RiscosDiversos Find(long id); RiscosDiversos FindById(long id); RiscosDiversos Merge(RiscosDiversos risco); RiscosDiversos SaveOrUpdate(RiscosDiversos risco); } }