init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Collections.Generic;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface ITanuloTanugyiAdatokDal
|
||||
{
|
||||
void Delete(int id);
|
||||
void Delete(ITanuloTanugyiAdatok dto);
|
||||
void FullUpdate(ITanuloTanugyiAdatok dto);
|
||||
ITanuloTanugyiAdatok Get();
|
||||
ITanuloTanugyiAdatok Get(int id);
|
||||
void Insert(ITanuloTanugyiAdatok dto);
|
||||
void UpdateNaplosorszamListGroup(List<int> osztalyIdList);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user