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

Wersja 877, 0.7 KB (wprowadzona przez alina, 16 years temu)

re #215 rozdzielenie testow, modyfikacja testu dotycząca dodania potwierdzenia i edycji statusu platnosci,
zmiana wysłania formularza do eCardu

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        IQueryable<vPlatnosciEcard> FindInvoiceById(int id);
17        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury);
18        IQueryable<PlatnosciEcard> FindPaymentByOrdernumber(int ordernumber);
19    }
20}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.