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