|
Wersja 949, 0.6 KB
(wprowadzona przez marek, 16 years temu)
|
|
re #215 - drobny refactoring
|
| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Linq;
|
|---|
| 4 | using Platnosci.Core.Linq;
|
|---|
| 5 |
|
|---|
| 6 | namespace 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.