blob: 6f328527dc463d39c77e974edf6c4f584ac04381 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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<ProfissaoDb>
{
List<Profissao> Find(string filter);
long FindLastId();
Profissao Merge(Profissao profissao);
Profissao SaveOrUpdate(Profissao profissao);
}
}
|