using Gestor.Infrastructure.Entities.Seguros; using Gestor.Infrastructure.Repository.Generic; using Gestor.Model.Domain.Relatorios; using Gestor.Model.Domain.Seguros; using System; using System.Collections.Generic; namespace Gestor.Infrastructure.Repository.Interface { public interface IMetaSeguradoraRepository : IGenericRepository { void Delete(long id); List Find(long id); MetaSeguradora FindById(long id); List FindByMeta(Filtros filtro); MetaSeguradora Merge(MetaSeguradora metaSeguradora); MetaSeguradora SaveOrUpdate(MetaSeguradora metaSeguradora); } }