Zbiór zmian 970 dla trunk/eCard/eCardMVC/adMoto.Payments.Core/Repository.cs
- Data:
- 2009-12-23 11:26:06 (16 years ago)
- Lokalizacja:
- trunk/eCard/eCardMVC/adMoto.Payments.Core
- Pliki:
-
- 1 dodane
- 1 skopiowane
-
. (dodane)
-
Repository.cs (skopiowane) (skopiowane from trunk/eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs) (3 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/adMoto.Payments.Core/Repository.cs
r949 r970 3 3 using System.Linq; 4 4 using System.Linq.Expressions; 5 using Platnosci.Core.Interface; 5 using adMoto.Payments.Core.Data; 6 using adMoto.Payments.Core.Interfaces; 6 7 7 8 8 namespace Platnosci.Core.Linq9 namespace adMoto.Payments.Core 9 10 { 10 11 /// <summary> … … 59 60 } 60 61 public void Insert(T entity) 61 {62 DataContext.Insert(entity);63 }62 { 63 DataContext.Insert(entity); 64 } 64 65 public void Delete(T entity) 65 66 { … … 82 83 return DataContext.GetTable<T>(); 83 84 } 84 public IQueryable< vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer)85 public IQueryable<Invoice> FindInvoiceByNipNumber(string nip, string numer) 85 86 { 86 87 return DataContext.FindInvoiceByNipNumber(nip, numer);
