10 lines
341 B
C#
10 lines
341 B
C#
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface IElearningElerhetosegDal
|
|
{
|
|
DataSet GetElearningElerhetosegDataSet(int roleId, List<string> packages, int tanevId, int intezmenyId, bool isGondviselo, bool isTanulo, int userId, int? gondviseloId);
|
|
}
|
|
}
|