using Gestor.Infrastructure.Entities.Common; using Gestor.Infrastructure.Repository.Generic; using Gestor.Model.Domain.Common; using System; using System.Collections.Generic; namespace Gestor.Infrastructure.Repository.Interface { public interface IBancoRepository : IGenericRepository { void Delete(long id); List Find(string filter); Banco FindById(long id); Banco Merge(Banco banco); Banco SaveOrUpdate(Banco banco); List SelectDefault(); } }