init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
25
Kreta.DataAccessManual/Interfaces/INemKotottMunkaidoDal.cs
Normal file
25
Kreta.DataAccessManual/Interfaces/INemKotottMunkaidoDal.cs
Normal file
|
@ -0,0 +1,25 @@
|
|||
using System;
|
||||
using System.Data;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface INemKotottMunkaidoDal
|
||||
{
|
||||
INemKotottMunkaido Get();
|
||||
INemKotottMunkaido GetNemKotottMunkaidoById(int Id);
|
||||
int Insert(INemKotottMunkaido entity);
|
||||
void Update(int id, bool megtartott, string megjegyzes = null, DateTime? kezdet = null, DateTime? vege = null, int? tipus = null);
|
||||
void UpdateNemKotottMunkaIdoByGroupId(int pTanevId, string pGroupId, DateTime pIdoszakKezdete, DateTime pIdoszakVege, string pNewGroupId, int pTorvenyikategoria, string pMegjegyzes, int userId);
|
||||
void Delete(int Id);
|
||||
void AdminDelete(int Id);
|
||||
void TanarDelete(int Id);
|
||||
DataSet GetNapokForNemKotottMunkaidoInsert(int intezmenyId, int tanevId, DateTime start, DateTime end, DateTime selected, int hetirend);
|
||||
DataSet GetNapokForNemKotottMunkaidoDelete(int intezmenyId, int tanevId, DateTime start, DateTime end, string groupId);
|
||||
int GetNemKotottMunkaidoId(int oralatogatasId, int tanarId);
|
||||
DataSet GetNemKotottMunkaidoData(int tanevId, int? pFeladatKategoriaId = null, int? pFeladatEllatasiHelyId = null);
|
||||
bool IsElmaradtOraAndPedagogusHasNemkotottMunkaido(int tanitasioraId);
|
||||
bool HasTanarNemKotottMunkaidoUtkozes(int tanarId, DateTime oraKezdete, DateTime oraVege, int? nemkotottId);
|
||||
DataSet GetNemKotottMunkaIdoHelyettesiteshez(int tanevId, DateTime start, DateTime end);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue