diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ISocioRepository.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ISocioRepository.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ISocioRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ISocioRepository.cs deleted file mode 100644 index d5c7eda..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ISocioRepository.cs +++ /dev/null @@ -1,23 +0,0 @@ -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);
- }
-}
\ No newline at end of file |