init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
41
Kreta.DataAccessManual/Interfaces/IDKT_FileDAL.cs
Normal file
41
Kreta.DataAccessManual/Interfaces/IDKT_FileDAL.cs
Normal file
|
@ -0,0 +1,41 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
using Kreta.DataAccessManual.ParameterClasses;
|
||||
using Kreta.Ellenorzo.Dao.VN.FeltoltottFajl;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface IDKT_FileDAL
|
||||
{
|
||||
IDKT_File Get();
|
||||
|
||||
IDKT_File Get(int id);
|
||||
|
||||
int Insert(IDKT_File dto);
|
||||
|
||||
void Update(IDKT_File file);
|
||||
|
||||
void FullUpdate(IDKT_File dto);
|
||||
|
||||
void Delete(int id, int userId);
|
||||
|
||||
void ConnectToHaziFeladat(int intezmenyId, int tanevId, int haziFeladatId, int csatolmanyId);
|
||||
|
||||
DataSet GetHaziFeladatCsatolmanyok(int tanevId, HFCsatolmanyokSearchPCO pco);
|
||||
|
||||
double GetHaziFeladatCsatolmanyokOsszMeret(int tanevId, int tanarId);
|
||||
|
||||
DataSet GetCsatolmanyokForHaziFeladatDataSet(int tanevId, int intezmenyId, int haziFeladatId);
|
||||
|
||||
int GetFeltoltottFajlokSzamaByOrarendiOraId(int intezmenyId, int tanevId, DateTime feltoltesDatuma, int v);
|
||||
|
||||
int GetFeltoltottFajlokSzamaByTanitasiOraId(int intezmenyId, int tanevId, int value);
|
||||
|
||||
bool GetJogosultsag(int tanuloId, int fileId, int tanevId);
|
||||
|
||||
DataSet FileKereses(int intezmenyId, int tanevId, FileKeresesRequestDao model, bool isNaplozas);
|
||||
|
||||
void Delete(int id);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue