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 IFabricanteRepository : IGenericRepository { void Delete(long id); List Find(string filter); Fabricante FindById(long id); Fabricante Merge(Fabricante fabricante); Fabricante SaveOrUpdate(Fabricante fabricante); List Select(); } }