28 lines
788 B
C#
28 lines
788 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using Kreta.DataAccess.Interfaces;
|
|
using Kreta.DataAccessManual.ParameterClasses;
|
|
using Kreta.Ellenorzo.Dao.VN.Email;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface IEmailDal : IBaseDal<IEmail>
|
|
{
|
|
void SetAlapertelmezett(int tanuloId, int userId, int tanevId);
|
|
|
|
List<EmailResponseDao> GetFelhasznalokEmailCimei(EmailRequestDao request);
|
|
|
|
void FullUpdate(IEmail dto);
|
|
|
|
IEmail GetSpecific(string condition, int tanevId);
|
|
|
|
new IEmail Insert(IEmail dto);
|
|
|
|
void AddFelhasznaloEmail(IFelhasznalo felhasznalo, IEmail email);
|
|
|
|
DataSet GetEmailDataSet(EmailSearchPco pco);
|
|
|
|
bool UpdateIsHibasanMegadvaFlag(int tanevId, Guid guid);
|
|
}
|
|
}
|