init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
29
Kreta.DataAccessManual/Interfaces/ITelefonDal.cs
Normal file
29
Kreta.DataAccessManual/Interfaces/ITelefonDal.cs
Normal file
|
@ -0,0 +1,29 @@
|
|||
using System.Collections.Generic;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
using Kreta.Ellenorzo.Dao.VN.Telefon;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface ITelefonDal
|
||||
{
|
||||
void SetTelefonAlapertelmezett(int tanuloId, int userId, int tanevId);
|
||||
|
||||
List<TelefonResponseDao> ListTelefon(List<int> felhasznaloIds, bool? isPublic);
|
||||
|
||||
void Delete(int id);
|
||||
void Delete(ITelefon dto);
|
||||
void FullUpdate(ITelefon dto);
|
||||
|
||||
void Update(ITelefon dto);
|
||||
|
||||
ITelefon Get();
|
||||
|
||||
ITelefon GetSpecific(string condition, int tanevId);
|
||||
|
||||
ITelefon Get(int id);
|
||||
|
||||
void Insert(ITelefon dto);
|
||||
|
||||
void AddFelhasznaloTelefon(IFelhasznalo felhasznalo, ITelefon telefon);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue