init
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user