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 IVendedorUsuarioRepository : IGenericRepository { void Delete(long id); bool Exist(long id); bool ExistVinculoUsuario(long idUsuario); VendedorUsuario FindById(long id); IList FindByUsuario(long idUsuario); List FindByVinculo(long idUsuario); VendedorUsuario Merge(VendedorUsuario vendedorUsuario); VendedorUsuario SaveOrUpdate(VendedorUsuario vendedorUsuario); } }