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