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

Wersja 918, 0.6 KB (wprowadzona przez alina, 16 years temu)

re #215 dodanie metody szukania ordernumber po orderdescription, dacie i id faktury

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        void Delete<T>(T item) where T : class;
16        IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer);
17        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury);
18        int GetOrdernumber(string description, int? idfaktury, DateTime? data);
19    }
20}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.