init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
26
Kreta.DataAccessManual/Interfaces/ILepEloadasDal.cs
Normal file
26
Kreta.DataAccessManual/Interfaces/ILepEloadasDal.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue