init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
25
Kreta.DataAccessManual/Interfaces/ITeremDal.cs
Normal file
25
Kreta.DataAccessManual/Interfaces/ITeremDal.cs
Normal file
|
@ -0,0 +1,25 @@
|
|||
using System.Data;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
using Kreta.DataAccessManual.ParameterClasses;
|
||||
using Kreta.Framework.Entities;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface ITeremDal
|
||||
{
|
||||
void Delete(int id);
|
||||
void Delete(ITerem dto);
|
||||
void FollowUpTerem(int intezmenyId, int aktTanevId, int kovetkezoTanevId, int teremId);
|
||||
void FullUpdate(ITerem dto);
|
||||
ITerem Get();
|
||||
ITerem Get(int id);
|
||||
DataSet GetBerbeadhatoTermekMukodesiHelyeinekVarosai(int? tanevId);
|
||||
DataSet GetTeremDataSet(int intezmenyId, int tanevId, bool isFromSzervezet, int? szervezetId);
|
||||
DataSet GetTeremIdWithName(bool IsFromSzervezet, int? tanevId = null);
|
||||
DataSet GetTermekAdataiExcelExport(int tanevId, TeremSearchPCO teremSearchPCO);
|
||||
void Insert(ITerem dto);
|
||||
void SetState(EntityState state, ITerem dto);
|
||||
DataSet TeremKapacitasTullepesVizsgalat(string teremIdArrayString, int? tervezettKapacitas);
|
||||
int GetKovTanevIdByAktTanevId(int id);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue