init
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface ITeremFeltoltottFajlDal
|
||||
{
|
||||
void Delete(ITerem_FeltoltottFajl dto);
|
||||
void Delete(int id);
|
||||
void FullUpdate(ITerem_FeltoltottFajl dto);
|
||||
ITerem_FeltoltottFajl Get();
|
||||
ITerem_FeltoltottFajl Get(int id);
|
||||
void Insert(ITerem_FeltoltottFajl dto);
|
||||
void Update(ITerem_FeltoltottFajl dto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user