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 ICentroRepository : IGenericRepository { List Find(string descricao); List Find(); Centro Merge(Centro centro); Centro SaveOrUpdate(Centro centro); } }