init
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface IOraFileDAL
|
||||
{
|
||||
IOraFile Get();
|
||||
|
||||
IOraFile Get(int id);
|
||||
|
||||
int Insert(IOraFile dto);
|
||||
|
||||
void UpdateLathatoFileok(int intezmenyId, int tanevId, int? tanitasiOraId, int? orarendiOraId, DateTime oraDatum, List<int> lathatoFileIds);
|
||||
|
||||
void Update(IOraFile dto);
|
||||
|
||||
void FullUpdate(IOraFile dto);
|
||||
|
||||
void Delete(IOraFile dto);
|
||||
|
||||
void SaveOraFileData(int oraFileId, string fileNev, string megjegyzes);
|
||||
|
||||
DataSet GetOraFilesByDateRange(DateTime start, DateTime end, int? oraFileTipus);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user