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

16 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Kreta.DataAccess.Interfaces;
namespace Kreta.DataAccessManual.Interfaces
{
public interface ITbJogviszonyDal
{
ITbJogviszony Get(int? id = null);
int Insert(ITbJogviszony dto, int? kovTanevId);
void Update(ITbJogviszony dto, int? kovTanevId);
}
}