summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ISocioRepository.cs
blob: d5c7eda2d77a2197be960850059e73122396cb81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ISocioRepository : IGenericRepository<SocioDb>
	{
		void Delete(long id);

		List<Socio> Find();

		List<Socio> FindByEmpresa(long id);

		Socio FindById(long id);

		Socio Merge(Socio socio);

		Socio SaveOrUpdate(Socio socio);
	}
}