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 IProfissaoRepository : IGenericRepository { List Find(string filter); long FindLastId(); Profissao Merge(Profissao profissao); Profissao SaveOrUpdate(Profissao profissao); } }