summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IRestricaoUsuarioRepository.cs
blob: aeb731bc46d34e17bea182c1b7f8456671a42b14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Gestor.Model.Common;
using Gestor.Model.Domain.Seguros;
using System;
using System.Collections.Generic;

namespace Gestor.Infrastructure.Repository.Interface
{
	public interface IRestricaoUsuarioRepository
	{
		List<RestricaoUsuario> FindByUsuario(long id);

		RestricaoUsuario FindRestricao(long id, TipoRestricao restricao);

		RestricaoUsuario Merge(RestricaoUsuario restricao);

		RestricaoUsuario SaveOrUpdate(RestricaoUsuario restricao);
	}
}