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 IAtividadeRepository : IGenericRepository { List Find(string filter); long FindLastId(); Atividade Merge(Atividade atividade); Atividade SaveOrUpdate(Atividade atividade); } }