blob: 9e1a522cf295da395349169d348426fc5d4115b3 (
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.Ferramentas;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Ferramentas;
using System;
using System.Collections.Generic;
namespace Gestor.Infrastructure.Repository.Interface
{
public interface IImpostoRepository : IGenericRepository<ImpostoDb>
{
List<Imposto> DefaultSelect(bool? ativo);
Imposto FindById(long id);
List<Imposto> FindByRamo(long id);
List<Imposto> FindBySeguradora(long id);
Imposto Merge(Imposto imposto);
Imposto SaveOrUpdate(Imposto imposto);
}
}
|