using Gestor.Infrastructure.Entities.Financeiro; using Gestor.Infrastructure.Repository.Generic; using Gestor.Model.Domain.Financeiro; using System; using System.Collections.Generic; namespace Gestor.Infrastructure.Repository.Interface { public interface IPlanosRepository : IGenericRepository { List Find(string descricao); List Find(); Planos FindById(long id); List FindByPlanoId(long id); Planos Merge(Planos planos); Planos SaveOrUpdate(Planos planos); } }