23 lines
763 B
C#
23 lines
763 B
C#
using System.Data;
|
|
using Kreta.DataAccess.Interfaces;
|
|
using Kreta.DataAccessManual.ParameterClasses;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface IEszkozDal : IBaseDal<IEszkoz>
|
|
{
|
|
void FullUpdate(IEszkoz entity);
|
|
bool GetEszkozByName(string eszkozName, int tanevId, int? id, int teremId, int jelleg);
|
|
bool GetEszkozByIds(string eszkozIdString, int tanevId, int teremId);
|
|
|
|
void FollowUpEszkoz(int intezmenyId, int aktTanevId, int kovetkezoTanevId, int eszkozId);
|
|
|
|
DataSet EszkozKereses(EszkozokSearchPco pco);
|
|
|
|
DataSet EszkozKeresesExport(EszkozokSearchPco pco);
|
|
|
|
DataSet GetEszkozDataSet(int tanevId);
|
|
|
|
DataSet GetEszkozokWhereTeremID(int teremId, int tanevId);
|
|
}
|
|
}
|