summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IFabricanteRepository.cs
blob: af987ed73539a5ab1fcc7a276ac109d143b7eac0 (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.Seguros;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Seguros;
using System;
using System.Collections.Generic;

namespace Gestor.Infrastructure.Repository.Interface
{
	public interface IFabricanteRepository : IGenericRepository<FabricanteDb>
	{
		void Delete(long id);

		List<Fabricante> Find(string filter);

		Fabricante FindById(long id);

		Fabricante Merge(Fabricante fabricante);

		Fabricante SaveOrUpdate(Fabricante fabricante);

		List<Fabricante> Select();
	}
}