19 lines
634 B
C#
19 lines
634 B
C#
using Kreta.DataAccess.Interfaces;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface IJelszoModositasLinkDal
|
|
{
|
|
IJelszoModositasLink Get();
|
|
IJelszoModositasLink Get(int id);
|
|
void FullUpdate(IJelszoModositasLink dto);
|
|
void Update(IJelszoModositasLink dto);
|
|
void Insert(IJelszoModositasLink dto);
|
|
void Delete(int id);
|
|
void Delete(IJelszoModositasLink dto);
|
|
int? GetId(string guid);
|
|
string GetGuidByGondviseloId(int gondviseloId);
|
|
void DeleteIfExists(int felhasznaloId, int? gondviseloId);
|
|
void DeleteInvalidLinks();
|
|
}
|
|
}
|