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

Wersja 896, 0.5 KB (wprowadzona przez alina, 16 years temu)

re #215 zmiana parametrow w konstruktorze PlatnosciController?, dostosowanie testow do zmiany

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