kreta/Kreta.DataAccessManual/Interfaces/IElearningElerhetosegDal.cs
2024-03-13 00:33:46 +01:00

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);
}
}