26 lines
608 B
C#
26 lines
608 B
C#
using System.Data;
|
|
using Kreta.DataAccess.Interfaces;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface ILepEloadasDal
|
|
{
|
|
ILepEloadas Get();
|
|
|
|
ILepEloadas Get(int id);
|
|
|
|
void FullUpdate(ILepEloadas dto);
|
|
|
|
void Update(ILepEloadas dto);
|
|
|
|
void Insert(ILepEloadas dto);
|
|
|
|
void Delete(ILepEloadas dto);
|
|
|
|
void LepEloadasUpdateKiseroSzam(int intezmenyId, int tanevId, int eloadasId, int kiseroSzam);
|
|
|
|
DataSet LepGetEloadasSzamok(int intezmenyId, int tanevId, int eloadasId);
|
|
|
|
bool HasLEPAccess(int felhasznaloId);
|
|
}
|
|
}
|