17 lines
505 B
C#
17 lines
505 B
C#
using System;
|
|
using System.Data;
|
|
using Kreta.DataAccess.Interfaces;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface IKirSzirFeladatellatasiHelyDAL
|
|
{
|
|
IKirSzirFeladatellatasiHely Get();
|
|
|
|
IKirSzirFeladatellatasiHely Get(int id);
|
|
|
|
int? GetByFeladatellatasiHelyId(int intezmenyId, int tanevId, int feladatellatasiHelyId, DateTime datum);
|
|
|
|
DataSet GetKirSzirFeladatellatasiHelyList(int tanevId, DateTime datum, int? feladatKategoriaId = null);
|
|
}
|
|
}
|