blob: f8e456d875aefdc84bfc05b4ea1158fcdd866e9d (
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 IGranizoRepository : IGenericRepository<GranizoDb>
{
void Delete(long id);
void DeleteRange(List<long> ids);
Granizo Find(long id);
Granizo FindById(long id);
Granizo Merge(Granizo granizo);
Granizo SaveOrUpdate(Granizo granizo);
}
}
|