root/trunk/eCard/eCardMVC/Platnosci.Core/Interface/IDataContext.cs @ 954

Wersja 949, 0.6 KB (wprowadzona przez marek, 16 years temu)

re #215 - drobny refactoring

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using Platnosci.Core.Linq;
5
6namespace Platnosci.Core.Interface
7{
8    public interface IDataContext
9    {
10        void SubmitChanges();
11        IQueryable<T> GetTable<T>() where T : class;
12        void Insert<T>(T item) where T : class;
13        void Delete<T>(T item) where T : class;
14        IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer);
15        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury);
16        int GetOrdernumber(string description, int? idfaktury, DateTime? data);
17    }
18}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.