init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System.Data;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface INatKerdoivDal
|
||||
{
|
||||
INATKerdoiv Get();
|
||||
INATKerdoiv Get(int id);
|
||||
void Insert(INATKerdoiv dto);
|
||||
void FullUpdate(INATKerdoiv dto);
|
||||
void Delete(INATKerdoiv dto);
|
||||
|
||||
DataSet GetNatKerdoivDataSetByAlkalmazott(int intezmenyId, int tanevId, int alkalmazottId);
|
||||
bool GetShowNatKerdoivPopup(int intezmenyId, int tanevIdValue, int alkalmazottId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user