10 lines
231 B
C#
10 lines
231 B
C#
using System.Data;
|
|
|
|
namespace Kreta.DataAccessManual.Interfaces
|
|
{
|
|
public interface ILeptetesDal
|
|
{
|
|
DataSet GetOsztalyLeptetesGridData(int tanevId);
|
|
DataSet GetCsoportLeptetesGridData(int tanevId);
|
|
}
|
|
}
|