init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Data;
|
||||
using Kreta.DataAccess.Interfaces;
|
||||
|
||||
namespace Kreta.DataAccessManual.Interfaces
|
||||
{
|
||||
public interface IKozmuszamlaDal
|
||||
{
|
||||
void Delete(int id);
|
||||
void FullUpdate(IKozmuSzamla dto);
|
||||
IKozmuSzamla Get();
|
||||
IKozmuSzamla Get(int id);
|
||||
void Insert(IKozmuSzamla dto);
|
||||
DataSet KozmuszamlaKereses(int tanevId, int intezmenyId, DateTime? fizetesiHataridoTol, DateTime? fizetesiHataridoIg, int? isFizetve, string kibocsato, int? kozmuSzamlaTipusId, double? osszegTol, double? osszegIg);
|
||||
void Update(IKozmuSzamla dto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user