18 lines
474 B
C#
18 lines
474 B
C#
using System.Collections.Generic;
|
|
using Kreta.DataAccess.Interfaces;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface ISzirStatFileDAL
|
|
{
|
|
ISzirStatFile Get();
|
|
|
|
ISzirStatFile Get(int id);
|
|
|
|
List<int> GetSzirStatFileIdByTipusIdAndFeladatellatasiHelyId(int intezmenyId, int tanevId, int szirStatTipusId, int kirSzirFeladatellatasiHelyId);
|
|
|
|
int Insert(ISzirStatFile dto);
|
|
|
|
void Delete(int id, int userId);
|
|
}
|
|
}
|