| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Linq;
|
|---|
| 4 | using System.Web;
|
|---|
| 5 | using Platnosci.Core.Linq;
|
|---|
| 6 | using System.Text;
|
|---|
| 7 |
|
|---|
| 8 | namespace 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.