using Gestor.Infrastructure.Entities.Ferramentas; using Gestor.Infrastructure.Repository.Generic; using Gestor.Model.Domain.Ferramentas; using System; using System.Collections.Generic; namespace Gestor.Infrastructure.Repository.Interface { public interface ICredencialRepository : IGenericRepository { void Delete(long id); List Find(long idEmpresa); List Find(string descricao, long idEmpresa); Credencial FindById(long id); Credencial Merge(Credencial credencial); Credencial SaveOrUpdate(Credencial credencial); } }